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