pub enum ImageSpace {
PIXEL,
WORLD,
OTHER(&'static str),
}
Variants§
Trait Implementations§
Source§impl Clone for ImageSpace
impl Clone for ImageSpace
Source§fn clone(&self) -> ImageSpace
fn clone(&self) -> ImageSpace
Returns a copy 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 ImageSpace
impl Debug for ImageSpace
Source§impl Default for ImageSpace
impl Default for ImageSpace
Source§fn default() -> ImageSpace
fn default() -> ImageSpace
Returns the “default value” for a type. Read more
Source§impl PartialEq for ImageSpace
impl PartialEq for ImageSpace
impl Copy for ImageSpace
impl Eq for ImageSpace
impl StructuralPartialEq for ImageSpace
Auto Trait Implementations§
impl Freeze for ImageSpace
impl RefUnwindSafe for ImageSpace
impl Send for ImageSpace
impl Sync for ImageSpace
impl Unpin for ImageSpace
impl UnwindSafe for ImageSpace
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