Struct cosmos_sdk_proto::ibc::core::channel::v1::PacketState[][src]

pub struct PacketState {
    pub port_id: String,
    pub channel_id: String,
    pub sequence: u64,
    pub data: Vec<u8>,
}

PacketState defines the generic type necessary to retrieve and store packet commitments, acknowledgements, and receipts. Caller is responsible for knowing the context necessary to interpret this state as a commitment, acknowledgement, or a receipt.

Fields

port_id: String

channel port identifier.

channel_id: String

channel unique identifier.

sequence: u64

packet sequence.

data: Vec<u8>

embedded data that represents packet state.

Trait Implementations

impl Clone for PacketState[src]

impl Debug for PacketState[src]

impl Default for PacketState[src]

impl Message for PacketState[src]

impl PartialEq<PacketState> for PacketState[src]

impl StructuralPartialEq for PacketState[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]