pub trait SendOps {
    fn send(
        &mut self,
        recipient: &Address,
        method: u64,
        params: &RawBytes,
        value: &TokenAmount
    ) -> Result<InvocationResult>; }
Expand description

Operations to send messages to other actors.

Required methods

Implementors