pub enum IdentifierPathNodeType {
IdentifierPath,
}
Expand description
IdentifierPathNodeType
JSON schema
{
"enum": [
"IdentifierPath"
]
}
Variants§
IdentifierPath
Trait Implementations§
Source§impl Clone for IdentifierPathNodeType
impl Clone for IdentifierPathNodeType
Source§fn clone(&self) -> IdentifierPathNodeType
fn clone(&self) -> IdentifierPathNodeType
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 IdentifierPathNodeType
impl Debug for IdentifierPathNodeType
Source§impl<'de> Deserialize<'de> for IdentifierPathNodeType
impl<'de> Deserialize<'de> for IdentifierPathNodeType
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<&IdentifierPathNodeType> for IdentifierPathNodeType
impl From<&IdentifierPathNodeType> for IdentifierPathNodeType
Source§fn from(value: &IdentifierPathNodeType) -> Self
fn from(value: &IdentifierPathNodeType) -> Self
Converts to this type from the input type.
Source§impl FromStr for IdentifierPathNodeType
impl FromStr for IdentifierPathNodeType
Source§impl Hash for IdentifierPathNodeType
impl Hash for IdentifierPathNodeType
Source§impl Ord for IdentifierPathNodeType
impl Ord for IdentifierPathNodeType
Source§fn cmp(&self, other: &IdentifierPathNodeType) -> Ordering
fn cmp(&self, other: &IdentifierPathNodeType) -> 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 IdentifierPathNodeType
impl PartialEq for IdentifierPathNodeType
Source§impl PartialOrd for IdentifierPathNodeType
impl PartialOrd for IdentifierPathNodeType
Source§impl Serialize for IdentifierPathNodeType
impl Serialize for IdentifierPathNodeType
Source§impl ToString for IdentifierPathNodeType
impl ToString for IdentifierPathNodeType
Source§impl TryFrom<&String> for IdentifierPathNodeType
impl TryFrom<&String> for IdentifierPathNodeType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for IdentifierPathNodeType
impl TryFrom<&str> for IdentifierPathNodeType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for IdentifierPathNodeType
impl TryFrom<String> for IdentifierPathNodeType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
impl Copy for IdentifierPathNodeType
impl Eq for IdentifierPathNodeType
impl StructuralPartialEq for IdentifierPathNodeType
Auto Trait Implementations§
impl Freeze for IdentifierPathNodeType
impl RefUnwindSafe for IdentifierPathNodeType
impl Send for IdentifierPathNodeType
impl Sync for IdentifierPathNodeType
impl Unpin for IdentifierPathNodeType
impl UnwindSafe for IdentifierPathNodeType
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