pub struct AbiFunction {
pub name: String,
pub access: FunctionAccess,
pub args: Vec<AbiArg>,
pub outputs: AbiType,
}Fields§
§name: String§access: FunctionAccess§args: Vec<AbiArg>§outputs: AbiTypeTrait Implementations§
Source§impl Clone for AbiFunction
impl Clone for AbiFunction
Source§fn clone(&self) -> AbiFunction
fn clone(&self) -> AbiFunction
Returns a duplicate 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 AbiFunction
impl Debug for AbiFunction
Source§impl<'de> Deserialize<'de> for AbiFunction
impl<'de> Deserialize<'de> for AbiFunction
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
Auto Trait Implementations§
impl Freeze for AbiFunction
impl RefUnwindSafe for AbiFunction
impl Send for AbiFunction
impl Sync for AbiFunction
impl Unpin for AbiFunction
impl UnsafeUnpin for AbiFunction
impl UnwindSafe for AbiFunction
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