pub struct YulLeave {
pub native_src: Option<SourceLocation>,
pub node_type: YulLeaveNodeType,
pub src: SourceLocation,
}
Expand description
YulLeave
JSON schema
{
"type": "object",
"required": [
"nodeType",
"src"
],
"properties": {
"nativeSrc": {
"$ref": "#/definitions/SourceLocation"
},
"nodeType": {
"enum": [
"YulLeave"
]
},
"src": {
"$ref": "#/definitions/SourceLocation"
}
},
"additionalProperties": false
}
Fields§
§native_src: Option<SourceLocation>
§node_type: YulLeaveNodeType
§src: SourceLocation
Trait Implementations§
Source§impl<'de> Deserialize<'de> for YulLeave
impl<'de> Deserialize<'de> for YulLeave
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<YulLeave> for YulStatement
impl From<YulLeave> for YulStatement
Auto Trait Implementations§
impl Freeze for YulLeave
impl RefUnwindSafe for YulLeave
impl Send for YulLeave
impl Sync for YulLeave
impl Unpin for YulLeave
impl UnwindSafe for YulLeave
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