[][src]Struct ibc_proto::cosmos::tx::signing::v1beta1::SignatureDescriptor

pub struct SignatureDescriptor {
    pub public_key: Option<Any>,
    pub data: Option<Data>,
    pub sequence: u64,
}

SignatureDescriptor is a convenience type which represents the full data for a signature including the public key of the signer, signing modes and the signature itself. It is primarily used for coordinating signatures between clients.

Fields

public_key: Option<Any>

public_key is the public key of the signer

data: Option<Data>sequence: u64

sequence is the sequence of the account, which describes the number of committed transactions signed by a given address. It is used to prevent replay attacks.

Trait Implementations

impl Clone for SignatureDescriptor[src]

impl Debug for SignatureDescriptor[src]

impl Default for SignatureDescriptor[src]

impl Message for SignatureDescriptor[src]

impl PartialEq<SignatureDescriptor> for SignatureDescriptor[src]

impl StructuralPartialEq for SignatureDescriptor[src]

Auto Trait Implementations

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

impl<T> Instrument for T[src]

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

impl<T> IntoRequest<T> for 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]