[][src]Struct parsec::PackedEvent

pub struct PackedEvent<T: NetworkEvent, P: PublicId> { /* fields omitted */ }

Packed event contains only content and signature.

Trait Implementations

impl<T: Clone + NetworkEvent, P: Clone + PublicId> Clone for PackedEvent<T, P> where
    P::Signature: Clone
[src]

impl<T: NetworkEvent, P: PublicId> Debug for PackedEvent<T, P>[src]

impl<'de, T: NetworkEvent, P: PublicId> Deserialize<'de> for PackedEvent<T, P>[src]

impl<T: Eq + NetworkEvent, P: Eq + PublicId> Eq for PackedEvent<T, P> where
    P::Signature: Eq
[src]

impl<T: Hash + NetworkEvent, P: Hash + PublicId> Hash for PackedEvent<T, P> where
    P::Signature: Hash
[src]

impl<T: Ord + NetworkEvent, P: Ord + PublicId> Ord for PackedEvent<T, P> where
    P::Signature: Ord
[src]

impl<T: PartialEq + NetworkEvent, P: PartialEq + PublicId> PartialEq<PackedEvent<T, P>> for PackedEvent<T, P> where
    P::Signature: PartialEq
[src]

impl<T: PartialOrd + NetworkEvent, P: PartialOrd + PublicId> PartialOrd<PackedEvent<T, P>> for PackedEvent<T, P> where
    P::Signature: PartialOrd
[src]

impl<T: NetworkEvent, P: PublicId> Serialize for PackedEvent<T, P>[src]

impl<T: NetworkEvent, P: PublicId> StructuralEq for PackedEvent<T, P>[src]

impl<T: NetworkEvent, P: PublicId> StructuralPartialEq for PackedEvent<T, P>[src]

Auto Trait Implementations

impl<T, P> RefUnwindSafe for PackedEvent<T, P> where
    P: RefUnwindSafe,
    T: RefUnwindSafe,
    <P as PublicId>::Signature: RefUnwindSafe

impl<T, P> Send for PackedEvent<T, P> where
    P: Send,
    T: Send,
    <P as PublicId>::Signature: Send

impl<T, P> Sync for PackedEvent<T, P> where
    P: Sync,
    T: Sync,
    <P as PublicId>::Signature: Sync

impl<T, P> Unpin for PackedEvent<T, P> where
    P: Unpin,
    T: Unpin,
    <P as PublicId>::Signature: Unpin

impl<T, P> UnwindSafe for PackedEvent<T, P> where
    P: RefUnwindSafe + UnwindSafe,
    T: UnwindSafe,
    <P as PublicId>::Signature: UnwindSafe

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> 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.

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