pub struct PngSummary {
pub width: usize,
pub height: usize,
pub original_bytes: usize,
pub optimized_bytes: usize,
pub saved_bytes: usize,
pub transparent_pixels: usize,
pub pixel_equivalent: bool,
pub ssimulacra2: f64,
pub reductions: bool,
}Fields§
§width: usize§height: usize§original_bytes: usize§optimized_bytes: usize§saved_bytes: usize§transparent_pixels: usize§pixel_equivalent: bool§ssimulacra2: f64§reductions: boolTrait Implementations§
Source§impl Debug for PngSummary
impl Debug for PngSummary
Auto Trait Implementations§
impl Freeze for PngSummary
impl RefUnwindSafe for PngSummary
impl Send for PngSummary
impl Sync for PngSummary
impl Unpin for PngSummary
impl UnsafeUnpin for PngSummary
impl UnwindSafe for PngSummary
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more