pub enum ImageDimension {
D2,
D3,
}Expand description
Represents the dimension of the image.
Variants§
Trait Implementations§
Source§impl Clone for ImageDimension
impl Clone for ImageDimension
Source§fn clone(&self) -> ImageDimension
fn clone(&self) -> ImageDimension
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ImageDimension
Source§impl Debug for ImageDimension
impl Debug for ImageDimension
impl Eq for ImageDimension
Source§impl Into<ImageType> for ImageDimension
impl Into<ImageType> for ImageDimension
Source§impl PartialEq for ImageDimension
impl PartialEq for ImageDimension
Source§fn eq(&self, other: &ImageDimension) -> bool
fn eq(&self, other: &ImageDimension) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ImageDimension
Auto Trait Implementations§
impl Freeze for ImageDimension
impl RefUnwindSafe for ImageDimension
impl Send for ImageDimension
impl Sync for ImageDimension
impl Unpin for ImageDimension
impl UnsafeUnpin for ImageDimension
impl UnwindSafe for ImageDimension
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