[][src]Struct solid::Builder

pub struct Builder<'a> { /* fields omitted */ }

Function call builder

Builds a function signature along with encode parameters to can be used to call a Solidity function

Methods

impl<'a> Builder<'a>[src]

pub fn new() -> Builder<'a>[src]

pub fn name(self, name: &'a str) -> Builder<'a>[src]

Set the name of the function

pub fn push<F>(self, value: F) -> Builder<'a> where
    F: Encode + IntoType
[src]

Push an argument to the functions argument list

Each argument is used to determine the function signature.

pub fn build(self) -> Vec<u8>[src]

Build the function call

If a name was set the a function selector will be used. Otherwise only the parameters will be encoded. A function name must not be set if a Solidity contract constructor is to be called.

Trait Implementations

impl<'a> Default for Builder<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Builder<'a>

impl<'a> Send for Builder<'a>

impl<'a> Sync for Builder<'a>

impl<'a> Unpin for Builder<'a>

impl<'a> UnwindSafe for Builder<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.