Struct ethabi::Function [−][src]
Contract function specification.
Fields
name: String
Function name.
inputs: Vec<Param>
Function input.
outputs: Vec<Param>
Function output.
constant: bool
Constant function.
Implementations
impl Function
[src]
pub fn encode_input(&self, tokens: &[Token]) -> Result<Bytes>
[src]
Prepares ABI function call with given input params.
pub fn decode_output(&self, data: &[u8]) -> Result<Vec<Token>>
[src]
Parses the ABI function output to list of tokens.
pub fn decode_input(&self, data: &[u8]) -> Result<Vec<Token>>
[src]
Parses the ABI function input to a list of tokens.
pub fn signature(&self) -> String
[src]
Returns a signature that uniquely identifies this function.
Examples:
functionName()
functionName():(uint256)
functionName(bool):(uint256,string)
functionName(uint256,bytes32):(string,uint256)
Trait Implementations
impl Clone for Function
[src]
impl Debug for Function
[src]
impl<'de> Deserialize<'de> for Function
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
impl PartialEq<Function> for Function
[src]
impl StructuralPartialEq for Function
[src]
Auto Trait Implementations
impl RefUnwindSafe for Function
impl Send for Function
impl Sync for Function
impl Unpin for Function
impl UnwindSafe for Function
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Same<T> for T
[src]
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
[src]
V: MultiLane<T>,