[][src]Struct elrond_wasm::call_data::CallDataSerializer

pub struct CallDataSerializer(_);

Implementations

impl CallDataSerializer[src]

Serializes to Elrond's smart contract call format.

This format consists of the function name, followed by '@', follwed by hex-encoded argument bytes separated by '@' characters. Example: "funcName@00000@aaaa@1234@@". Arguments can be empty, in which case no hex digits are emitted. Argument hex encodings will always have an even number of digits.

CallDataSerializer owns its output.

Converting from whatever type the argument to bytes is not in scope. Use the serializer module for that.

pub fn new(func_name: &[u8]) -> Self[src]

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

pub fn push_argument_bytes(&mut self, bytes: &[u8])[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<T> From<T> for T[src]

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

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.