pub struct OptimizeResult {
pub optimized_base64: String,
pub report: SavingsReport,
pub original_width: u32,
pub original_height: u32,
pub width: u32,
pub height: u32,
pub optimized_bytes: usize,
}Fields§
§optimized_base64: String§report: SavingsReport§original_width: u32§original_height: u32§width: u32§height: u32§optimized_bytes: usizeAuto Trait Implementations§
impl Freeze for OptimizeResult
impl RefUnwindSafe for OptimizeResult
impl Send for OptimizeResult
impl Sync for OptimizeResult
impl Unpin for OptimizeResult
impl UnsafeUnpin for OptimizeResult
impl UnwindSafe for OptimizeResult
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