pub enum MappingNodeType {
Mapping,
}
Expand description
MappingNodeType
JSON schema
{
"enum": [
"Mapping"
]
}
Variants§
Mapping
Trait Implementations§
Source§impl Clone for MappingNodeType
impl Clone for MappingNodeType
Source§fn clone(&self) -> MappingNodeType
fn clone(&self) -> MappingNodeType
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 MappingNodeType
impl Debug for MappingNodeType
Source§impl<'de> Deserialize<'de> for MappingNodeType
impl<'de> Deserialize<'de> for MappingNodeType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&MappingNodeType> for MappingNodeType
impl From<&MappingNodeType> for MappingNodeType
Source§fn from(value: &MappingNodeType) -> Self
fn from(value: &MappingNodeType) -> Self
Converts to this type from the input type.
Source§impl FromStr for MappingNodeType
impl FromStr for MappingNodeType
Source§impl Hash for MappingNodeType
impl Hash for MappingNodeType
Source§impl Ord for MappingNodeType
impl Ord for MappingNodeType
Source§fn cmp(&self, other: &MappingNodeType) -> Ordering
fn cmp(&self, other: &MappingNodeType) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for MappingNodeType
impl PartialEq for MappingNodeType
Source§impl PartialOrd for MappingNodeType
impl PartialOrd for MappingNodeType
Source§impl Serialize for MappingNodeType
impl Serialize for MappingNodeType
Source§impl ToString for MappingNodeType
impl ToString for MappingNodeType
Source§impl TryFrom<&String> for MappingNodeType
impl TryFrom<&String> for MappingNodeType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for MappingNodeType
impl TryFrom<&str> for MappingNodeType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for MappingNodeType
impl TryFrom<String> for MappingNodeType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
impl Copy for MappingNodeType
impl Eq for MappingNodeType
impl StructuralPartialEq for MappingNodeType
Auto Trait Implementations§
impl Freeze for MappingNodeType
impl RefUnwindSafe for MappingNodeType
impl Send for MappingNodeType
impl Sync for MappingNodeType
impl Unpin for MappingNodeType
impl UnwindSafe for MappingNodeType
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