[][src]Struct ibc_proto::tx::v1beta1::mode_info::Multi

pub struct Multi {
    pub bitarray: Option<CompactBitArray>,
    pub mode_infos: Vec<ModeInfo>,
}

Multi is the mode info for a multisig public key

Fields

bitarray: Option<CompactBitArray>

bitarray specifies which keys within the multisig are signing

mode_infos: Vec<ModeInfo>

mode_infos is the corresponding modes of the signers of the multisig which could include nested multisig public keys

Trait Implementations

impl Clone for Multi[src]

impl Debug for Multi[src]

impl Default for Multi[src]

impl Message for Multi[src]

impl PartialEq<Multi> for Multi[src]

impl StructuralPartialEq for Multi[src]

Auto Trait Implementations

impl RefUnwindSafe for Multi

impl Send for Multi

impl Sync for Multi

impl Unpin for Multi

impl UnwindSafe for Multi

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> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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.