[][src]Struct ibc::events::RawObject

pub struct RawObject {
    pub height: Height,
    pub action: String,
    pub idx: usize,
    pub events: HashMap<String, Vec<String>>,
}

Fields

height: Heightaction: Stringidx: usizeevents: HashMap<String, Vec<String>>

Implementations

impl RawObject[src]

pub fn new(
    height: Height,
    action: String,
    idx: usize,
    events: HashMap<String, Vec<String>>
) -> RawObject
[src]

Trait Implementations

impl Clone for RawObject[src]

impl Debug for RawObject[src]

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

impl Serialize for RawObject[src]

impl TryFrom<RawObject> for CreateClient[src]

type Error = BoxError

The type returned in the event of a conversion error.

impl TryFrom<RawObject> for UpdateClient[src]

type Error = BoxError

The type returned in the event of a conversion error.

impl TryFrom<RawObject> for OpenConfirm[src]

type Error = BoxError

The type returned in the event of a conversion error.

impl TryFrom<RawObject> for CloseInit[src]

type Error = BoxError

The type returned in the event of a conversion error.

impl TryFrom<RawObject> for CloseConfirm[src]

type Error = BoxError

The type returned in the event of a conversion error.

impl TryFrom<RawObject> for SendPacket[src]

type Error = BoxError

The type returned in the event of a conversion error.

impl TryFrom<RawObject> for ReceivePacket[src]

type Error = BoxError

The type returned in the event of a conversion error.

impl TryFrom<RawObject> for AcknowledgePacket[src]

type Error = BoxError

The type returned in the event of a conversion error.

impl TryFrom<RawObject> for CleanupPacket[src]

type Error = BoxError

The type returned in the event of a conversion error.

impl TryFrom<RawObject> for TimeoutPacket[src]

type Error = BoxError

The type returned in the event of a conversion error.

impl TryFrom<RawObject> for Timeout[src]

type Error = BoxError

The type returned in the event of a conversion error.

impl TryFrom<RawObject> for Packet[src]

type Error = BoxError

The type returned in the event of a conversion error.

impl TryFrom<RawObject> for ClientMisbehavior[src]

type Error = BoxError

The type returned in the event of a conversion error.

impl TryFrom<RawObject> for ChannelClosed[src]

type Error = BoxError

The type returned in the event of a conversion error.

impl TryFrom<RawObject> for OpenInit[src]

type Error = BoxError

The type returned in the event of a conversion error.

impl TryFrom<RawObject> for OpenTry[src]

type Error = BoxError

The type returned in the event of a conversion error.

impl TryFrom<RawObject> for OpenAck[src]

type Error = BoxError

The type returned in the event of a conversion error.

impl TryFrom<RawObject> for OpenConfirm[src]

type Error = BoxError

The type returned in the event of a conversion error.

impl TryFrom<RawObject> for OpenInit[src]

type Error = BoxError

The type returned in the event of a conversion error.

impl TryFrom<RawObject> for OpenTry[src]

type Error = BoxError

The type returned in the event of a conversion error.

impl TryFrom<RawObject> for OpenAck[src]

type Error = BoxError

The type returned in the event of a conversion error.

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

impl<T> DynClone for T where
    T: Clone
[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.

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