pub struct YulContinue {
pub native_src: Option<SourceLocation>,
pub node_type: YulContinueNodeType,
pub src: SourceLocation,
}
Expand description
YulContinue
JSON schema
{
"type": "object",
"required": [
"nodeType",
"src"
],
"properties": {
"nativeSrc": {
"$ref": "#/definitions/SourceLocation"
},
"nodeType": {
"enum": [
"YulContinue"
]
},
"src": {
"$ref": "#/definitions/SourceLocation"
}
},
"additionalProperties": false
}
Fields§
§native_src: Option<SourceLocation>
§node_type: YulContinueNodeType
§src: SourceLocation
Trait Implementations§
Source§impl Clone for YulContinue
impl Clone for YulContinue
Source§fn clone(&self) -> YulContinue
fn clone(&self) -> YulContinue
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 YulContinue
impl Debug for YulContinue
Source§impl<'de> Deserialize<'de> for YulContinue
impl<'de> Deserialize<'de> for YulContinue
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<&YulContinue> for YulContinue
impl From<&YulContinue> for YulContinue
Source§fn from(value: &YulContinue) -> Self
fn from(value: &YulContinue) -> Self
Converts to this type from the input type.
Source§impl From<YulContinue> for YulStatement
impl From<YulContinue> for YulStatement
Source§fn from(value: YulContinue) -> Self
fn from(value: YulContinue) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for YulContinue
impl RefUnwindSafe for YulContinue
impl Send for YulContinue
impl Sync for YulContinue
impl Unpin for YulContinue
impl UnwindSafe for YulContinue
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