[][src]Struct parsec::Request

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

A gossip request message.

Trait Implementations

impl<T: Clone + NetworkEvent, P: Clone + PublicId> Clone for Request<T, P>[src]

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

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

impl<T: Eq + NetworkEvent, P: Eq + PublicId> Eq for Request<T, P>[src]

impl<T: Hash + NetworkEvent, P: Hash + PublicId> Hash for Request<T, P>[src]

impl<T: PartialEq + NetworkEvent, P: PartialEq + PublicId> PartialEq<Request<T, P>> for Request<T, P>[src]

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

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

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

Auto Trait Implementations

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

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

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

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

impl<T, P> UnwindSafe for Request<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>,