Struct ink_env::test::CallData[][src]

pub struct CallData { /* fields omitted */ }

The raw ABI respecting input data to a call.

Note

The first four bytes are the function selector and the rest are SCALE encoded inputs.

Implementations

impl CallData[src]

pub fn new(selector: Selector) -> Self[src]

Creates new call ABI data for the given selector.

pub fn push_arg<A>(&mut self, arg: &A) where
    A: Encode
[src]

Pushes the given argument onto the call ABI data in encoded form.

pub fn selector(&self) -> Selector[src]

Returns the selector of self.

pub fn params(&self) -> &[u8][src]

Returns the underlying bytes of the encoded input parameters.

pub fn to_bytes(&self) -> &[u8][src]

Returns the underlying byte representation.

Trait Implementations

impl Clone for CallData[src]

impl Debug for CallData[src]

impl Decode for CallData[src]

impl Encode for CallData[src]

impl Eq for CallData[src]

impl PartialEq<CallData> for CallData[src]

impl StructuralEq for CallData[src]

impl StructuralPartialEq for CallData[src]

Auto Trait Implementations

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<S> Codec for S where
    S: Encode + Decode
[src]

impl<T> DecodeAll for T where
    T: Decode
[src]

impl<T> DecodeLimit for T where
    T: Decode
[src]

impl<'_, '_, T> EncodeLike<&'_ &'_ T> for T where
    T: Encode
[src]

impl<'_, T> EncodeLike<&'_ T> for T where
    T: Encode
[src]

impl<'_, T> EncodeLike<&'_ mut T> for T where
    T: Encode
[src]

impl<T> EncodeLike<Arc<T>> for T where
    T: Encode
[src]

impl<T> EncodeLike<Box<T, Global>> for T where
    T: Encode
[src]

impl<'a, T> EncodeLike<Cow<'a, T>> for T where
    T: Encode + ToOwned
[src]

impl<T> EncodeLike<Rc<T>> for T where
    T: Encode
[src]

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

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

impl<T> KeyedVec for T where
    T: Codec
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,