#[non_exhaustive]pub enum SingleFormat {
Xy,
Yx,
}Expand description
Data format for single-series commands.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Clone for SingleFormat
impl Clone for SingleFormat
Source§fn clone(&self) -> SingleFormat
fn clone(&self) -> SingleFormat
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 SingleFormat
impl Debug for SingleFormat
Source§impl Default for SingleFormat
impl Default for SingleFormat
Source§fn default() -> SingleFormat
fn default() -> SingleFormat
Returns the “default value” for a type. Read more
Source§impl PartialEq for SingleFormat
impl PartialEq for SingleFormat
impl Copy for SingleFormat
impl Eq for SingleFormat
impl StructuralPartialEq for SingleFormat
Auto Trait Implementations§
impl Freeze for SingleFormat
impl RefUnwindSafe for SingleFormat
impl Send for SingleFormat
impl Sync for SingleFormat
impl Unpin for SingleFormat
impl UnsafeUnpin for SingleFormat
impl UnwindSafe for SingleFormat
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