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