pub enum Axis<_Value: NestedValue = IOValue> {
Values,
Descendants,
At {
key: _Value,
},
Label,
Keys,
Length,
Annotations,
Embedded,
Parse {
module: Vec<String>,
name: String,
},
Unparse {
module: Vec<String>,
name: String,
},
}Variants
Values
Descendants
At
Label
Keys
Length
Annotations
Embedded
Parse
Unparse
Trait Implementations
sourceimpl<_Value: Clone + NestedValue> Clone for Axis<_Value>
impl<_Value: Clone + NestedValue> Clone for Axis<_Value>
sourceimpl<_Value: Debug + NestedValue> Debug for Axis<_Value>
impl<_Value: Debug + NestedValue> Debug for Axis<_Value>
sourceimpl<_Value: NestedValue> Deserialize<_Value> for Axis<_Value>
impl<_Value: NestedValue> Deserialize<_Value> for Axis<_Value>
fn deserialize<'de, R: Reader<'de, _Value>>(
r: &mut R
) -> Result<Self, ParseError>
sourceimpl<_Value: Hash + NestedValue> Hash for Axis<_Value>
impl<_Value: Hash + NestedValue> Hash for Axis<_Value>
sourceimpl<_Value: Ord + NestedValue> Ord for Axis<_Value>
impl<_Value: Ord + NestedValue> Ord for Axis<_Value>
1.21.0 · sourceconst fn max(self, other: Self) -> Self
const fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
1.21.0 · sourceconst fn min(self, other: Self) -> Self
const fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
1.50.0 · sourceconst fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
const fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl<'a, _L: Copy + Into<&'a Language<_Value>>, _Value: NestedValue + 'a> Parse<_L, _Value> for Axis<_Value>
impl<'a, _L: Copy + Into<&'a Language<_Value>>, _Value: NestedValue + 'a> Parse<_L, _Value> for Axis<_Value>
fn parse(_ctxt: _L, value: &_Value) -> Result<Self, ParseError>
sourceimpl<_Value: PartialEq + NestedValue> PartialEq<Axis<_Value>> for Axis<_Value>
impl<_Value: PartialEq + NestedValue> PartialEq<Axis<_Value>> for Axis<_Value>
sourceimpl<_Value: PartialOrd + NestedValue> PartialOrd<Axis<_Value>> for Axis<_Value>
impl<_Value: PartialOrd + NestedValue> PartialOrd<Axis<_Value>> for Axis<_Value>
sourcefn partial_cmp(&self, other: &Axis<_Value>) -> Option<Ordering>
fn partial_cmp(&self, other: &Axis<_Value>) -> Option<Ordering>
1.0.0 · sourceconst fn le(&self, other: &Rhs) -> bool
const fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moresourceimpl<'a, _L: Copy + Into<&'a Language<_Value>>, _Value: NestedValue + 'a> Unparse<_L, _Value> for Axis<_Value>
impl<'a, _L: Copy + Into<&'a Language<_Value>>, _Value: NestedValue + 'a> Unparse<_L, _Value> for Axis<_Value>
impl<_Value: NestedValue> Domain for Axis<_Value>
impl<_Value: Eq + NestedValue> Eq for Axis<_Value>
impl<_Value: NestedValue> StructuralEq for Axis<_Value>
impl<_Value: NestedValue> StructuralPartialEq for Axis<_Value>
Auto Trait Implementations
impl<_Value> RefUnwindSafe for Axis<_Value>where
_Value: RefUnwindSafe,
impl<_Value> Send for Axis<_Value>where
_Value: Send,
impl<_Value> Sync for Axis<_Value>where
_Value: Sync,
impl<_Value> Unpin for Axis<_Value>where
_Value: Unpin,
impl<_Value> UnwindSafe for Axis<_Value>where
_Value: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more