pub enum RasterElementKind {
Integer,
Float,
}Expand description
Broad category of a RasterElement, used to pick an exact conversion path.
Variants§
Integer
A signed or unsigned integer (u8 … i64).
Float
An IEEE 754 binary floating-point number (f32, f64).
Trait Implementations§
Source§impl Clone for RasterElementKind
impl Clone for RasterElementKind
Source§fn clone(&self) -> RasterElementKind
fn clone(&self) -> RasterElementKind
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 RasterElementKind
Source§impl Debug for RasterElementKind
impl Debug for RasterElementKind
impl Eq for RasterElementKind
Source§impl Hash for RasterElementKind
impl Hash for RasterElementKind
Source§impl PartialEq for RasterElementKind
impl PartialEq for RasterElementKind
impl StructuralPartialEq for RasterElementKind
Auto Trait Implementations§
impl Freeze for RasterElementKind
impl RefUnwindSafe for RasterElementKind
impl Send for RasterElementKind
impl Sync for RasterElementKind
impl Unpin for RasterElementKind
impl UnsafeUnpin for RasterElementKind
impl UnwindSafe for RasterElementKind
Blanket Implementations§
impl<T> Allocation for T
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