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