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