#[non_exhaustive]pub enum AxisKind {
Show 16 variants
Sample,
Feature,
Processing,
Time,
Height,
Width,
Channel,
Node,
Edge,
Variant,
Token,
Target,
Wavelength,
Wavenumber,
Frequency,
Depth,
}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.
Sample
Feature
Processing
Time
Height
Width
Channel
Node
Edge
Variant
Token
Target
Wavelength
Wavenumber
Frequency
Depth
Trait Implementations§
Source§impl<'de> Deserialize<'de> for AxisKind
impl<'de> Deserialize<'de> for AxisKind
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<AxisKind, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<AxisKind, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for AxisKind
Source§impl Serialize for AxisKind
impl Serialize for AxisKind
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for AxisKind
Auto Trait Implementations§
impl Freeze for AxisKind
impl RefUnwindSafe for AxisKind
impl Send for AxisKind
impl Sync for AxisKind
impl Unpin for AxisKind
impl UnsafeUnpin for AxisKind
impl UnwindSafe for AxisKind
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