[][src]Struct cosmos_stdtx::schema::Schema

pub struct Schema { /* fields omitted */ }

Schema definition for an sdk.Msg to be included in an StdTx.

The schema includes information about field identifiers and associated types.

Methods

impl Schema[src]

pub fn new(namespace: TypeName, definitions: impl Into<Vec<Definition>>) -> Self[src]

Create a new Schema with the given StdTx namespace and Definition set

pub fn load_toml(path: impl AsRef<Path>) -> Result<Self, Error>[src]

Load a TOML file describing

pub fn definitions(&self) -> &[Definition][src]

Definition types found in this Schema

Trait Implementations

impl Clone for Schema[src]

impl Debug for Schema[src]

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

impl Eq for Schema[src]

impl FromStr for Schema[src]

type Err = Error

The associated error which can be returned from parsing.

impl PartialEq<Schema> for Schema[src]

impl StructuralEq for Schema[src]

impl StructuralPartialEq for Schema[src]

Auto Trait Implementations

impl RefUnwindSafe for Schema

impl Send for Schema

impl Sync for Schema

impl Unpin for Schema

impl UnwindSafe for Schema

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

impl<T> From<T> 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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.