pub enum Representation {
Auto = 0,
Column = 1,
Row = 2,
}Expand description
Enum representing the type of representation.
Variants§
Auto = 0
Automatically determine the representation type.
Column = 1
Column-based representation.
Row = 2
Row-based representation.
Trait Implementations§
Source§impl Clone for Representation
impl Clone for Representation
Source§fn clone(&self) -> Representation
fn clone(&self) -> Representation
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 Representation
impl Debug for Representation
Source§impl From<Representation> for i32
impl From<Representation> for i32
Source§fn from(param: Representation) -> i32
fn from(param: Representation) -> i32
Converts to this type from the input type.
Source§impl PartialEq for Representation
impl PartialEq for Representation
impl Copy for Representation
impl Eq for Representation
impl StructuralPartialEq for Representation
Auto Trait Implementations§
impl Freeze for Representation
impl RefUnwindSafe for Representation
impl Send for Representation
impl Sync for Representation
impl Unpin for Representation
impl UnwindSafe for Representation
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