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