Trait wasm_deploy::contract::Msg

source ·
pub trait Msg: Debug + Send + Sync + Serialize { }

Trait Implementations§

source§

impl Serialize for dyn Msg

source§

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

Serialize this value into the given Serde serializer. Read more

Implementors§

source§

impl<T> Msg for Twhere T: Debug + Serialize + Send + Sync,