fmt: make rustfmt happy

This commit is contained in:
Aloxaf 2021-04-26 18:05:24 +08:00
parent 49d7bb77c9
commit 24d4978e1c
No known key found for this signature in database
GPG Key ID: A07920B86500DE6C
1 changed files with 5 additions and 1 deletions

View File

@ -67,7 +67,11 @@ pub fn dump_image_to_clipboard(image: &DynamicImage) -> Result<(), Error> {
Ok(())
}
#[cfg(not(any(target_os = "linux", all(target_os = "macos", not(target_arch = "aarch64")), target_os = "windows")))]
#[cfg(not(any(
target_os = "linux",
all(target_os = "macos", not(target_arch = "aarch64")),
target_os = "windows"
)))]
pub fn dump_image_to_clipboard(_image: &DynamicImage) -> Result<(), Error> {
Err(format_err!(
"This feature hasn't been implemented for your system"