//// Sizing
///// Image sizing.
////// The default is [Fit](Self::Fit).
#[derive(Clone, Copy, Debug, Default, PartialEq)]pubenumSizing{/// Shrinks the image if it's too big.
#[default]
Shrink,/// Shrinks the image if it's too big or expands it if it's too small.
Fit,/// Scale.
Scale(f64),}implSizing{/// Keep the original size: [Scale](Self::Scale)(1.).
pubfnoriginal()->Self{Self::Scale(1.)}}