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