pub enum CropResult<Cropped, Old> {
Cropped(Cropped),
Empty {
original: Old,
},
}
Expand description
Cropping an image fails if the image is fully transparent.
Use [or_crop_to_1x1_if_empty
] or [or_none_if_empty
] to obtain a normal image again.
Variants
Cropped(Cropped)
The image contained some pixels and has been cropped or left untouched
Empty
All pixels in the image would be discarded, removing the whole image
Implementations
sourceimpl<Cropped, Original> CropResult<Cropped, Original>
impl<Cropped, Original> CropResult<Cropped, Original>
sourcepub fn or_none_if_empty(self) -> Option<Cropped>
pub fn or_none_if_empty(self) -> Option<Cropped>
If the image was fully empty, return None
, otherwise return Some(cropped_image)
.
sourcepub fn or_crop_to_1x1_if_empty(self) -> Cropped where
Original: Crop<Cropped = Cropped> + GetBounds,
pub fn or_crop_to_1x1_if_empty(self) -> Cropped where
Original: Crop<Cropped = Cropped> + GetBounds,
If the image was fully empty, crop to one single pixel of all the transparent pixels instead, leaving the layer intact while reducing memory usage.
Trait Implementations
sourceimpl<Cropped: Clone, Old: Clone> Clone for CropResult<Cropped, Old>
impl<Cropped: Clone, Old: Clone> Clone for CropResult<Cropped, Old>
sourcefn clone(&self) -> CropResult<Cropped, Old>
fn clone(&self) -> CropResult<Cropped, Old>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<Cropped: Debug, Old: Debug> Debug for CropResult<Cropped, Old>
impl<Cropped: Debug, Old: Debug> Debug for CropResult<Cropped, Old>
sourceimpl<Cropped: PartialEq, Old: PartialEq> PartialEq<CropResult<Cropped, Old>> for CropResult<Cropped, Old>
impl<Cropped: PartialEq, Old: PartialEq> PartialEq<CropResult<Cropped, Old>> for CropResult<Cropped, Old>
sourcefn eq(&self, other: &CropResult<Cropped, Old>) -> bool
fn eq(&self, other: &CropResult<Cropped, Old>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &CropResult<Cropped, Old>) -> bool
fn ne(&self, other: &CropResult<Cropped, Old>) -> bool
This method tests for !=
.
impl<Cropped: Copy, Old: Copy> Copy for CropResult<Cropped, Old>
impl<Cropped: Eq, Old: Eq> Eq for CropResult<Cropped, Old>
impl<Cropped, Old> StructuralEq for CropResult<Cropped, Old>
impl<Cropped, Old> StructuralPartialEq for CropResult<Cropped, Old>
Auto Trait Implementations
impl<Cropped, Old> RefUnwindSafe for CropResult<Cropped, Old> where
Cropped: RefUnwindSafe,
Old: RefUnwindSafe,
impl<Cropped, Old> Send for CropResult<Cropped, Old> where
Cropped: Send,
Old: Send,
impl<Cropped, Old> Sync for CropResult<Cropped, Old> where
Cropped: Sync,
Old: Sync,
impl<Cropped, Old> Unpin for CropResult<Cropped, Old> where
Cropped: Unpin,
Old: Unpin,
impl<Cropped, Old> UnwindSafe for CropResult<Cropped, Old> where
Cropped: UnwindSafe,
Old: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more