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