pub struct DecodedArguments {
pub function_name: String,
pub selector: [u8; 4],
pub args: Vec<DecodedArgument>,
}Expand description
Decoded calldata arguments.
Fields§
§function_name: String§selector: [u8; 4]§args: Vec<DecodedArgument>Trait Implementations§
Source§impl Clone for DecodedArguments
impl Clone for DecodedArguments
Source§fn clone(&self) -> DecodedArguments
fn clone(&self) -> DecodedArguments
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for DecodedArguments
impl RefUnwindSafe for DecodedArguments
impl Send for DecodedArguments
impl Sync for DecodedArguments
impl Unpin for DecodedArguments
impl UnsafeUnpin for DecodedArguments
impl UnwindSafe for DecodedArguments
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