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