Trait NibiruStargateQuery

Source
pub trait NibiruStargateQuery: Message + Name {
    // Required methods
    fn into_stargate_query(&self) -> NibiruResult<QueryRequest<Empty>>;
    fn path(&self) -> String;
}

Required Methods§

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<M> NibiruStargateQuery for M
where M: Message + Name,