pub enum ImageScalarType {
Int8 = 2,
Uint8 = 3,
Int16 = 4,
Uint16 = 5,
Int32 = 6,
Uint32 = 7,
Float32 = 10,
Float64 = 11,
}
Expand description
Image scalar type
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for ImageScalarType
impl Clone for ImageScalarType
Source§fn clone(&self) -> ImageScalarType
fn clone(&self) -> ImageScalarType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ImageScalarType
impl Debug for ImageScalarType
Source§impl PartialEq for ImageScalarType
impl PartialEq for ImageScalarType
impl Copy for ImageScalarType
impl Eq for ImageScalarType
impl StructuralPartialEq for ImageScalarType
Auto Trait Implementations§
impl Freeze for ImageScalarType
impl RefUnwindSafe for ImageScalarType
impl Send for ImageScalarType
impl Sync for ImageScalarType
impl Unpin for ImageScalarType
impl UnwindSafe for ImageScalarType
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