Struct terra_rust_api::messages::bank::MsgSend[][src]

pub struct MsgSend { /* fields omitted */ }

Message: Send N coins from an address to another

Implementations

impl MsgSend[src]

pub fn create_single(
    from_address: String,
    to_address: String,
    amount: Coin
) -> MsgSend
[src]

Send amount coins from from_address to to_address

pub fn create(
    from_address: String,
    to_address: String,
    amount: Vec<Coin>
) -> MsgSend
[src]

send multiple coins from from_address to to_address

Trait Implementations

impl Debug for MsgSend[src]

impl<'de> Deserialize<'de> for MsgSend[src]

impl Msg for MsgSend[src]

impl Serialize for MsgSend[src]

Auto Trait Implementations

impl RefUnwindSafe for MsgSend

impl Send for MsgSend

impl Sync for MsgSend

impl Unpin for MsgSend

impl UnwindSafe for MsgSend

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument 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> Serialize for T where
    T: Serialize + ?Sized
[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.