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