Trait terra_rust_api::client::core_types::MsgInternal[][src]

pub trait MsgInternal: Serialize { }
Expand description

Every Message sent must implement this trait

Trait Implementations

impl<'erased> Serialize for dyn MsgInternal + 'erased[src]

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error> where
    S: Serializer
[src]

Serialize this value into the given Serde serializer. Read more

impl<'erased> Serialize for dyn MsgInternal + Send + 'erased[src]

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error> where
    S: Serializer
[src]

Serialize this value into the given Serde serializer. Read more

impl<'erased> Serialize for dyn MsgInternal + Sync + 'erased[src]

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error> where
    S: Serializer
[src]

Serialize this value into the given Serde serializer. Read more

impl<'erased> Serialize for dyn MsgInternal + Send + Sync + 'erased[src]

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error> where
    S: Serializer
[src]

Serialize this value into the given Serde serializer. Read more

Implementors