[][src]Struct poldercast::GossipSlice

pub struct GossipSlice<'a>(_);

Implementations

impl<'a> GossipSlice<'a>[src]

pub fn try_from_slice(slice: &'a [u8]) -> Result<Self, GossipError>[src]

pub fn from_slice_unchecked(slice: &'a [u8]) -> Self[src]

pub fn to_owned(self) -> Gossip[src]

pub fn id(&self) -> PublicKey[src]

pub fn time(&self) -> Time[src]

pub fn address(&self) -> SocketAddr[src]

pub fn subscriptions(&self) -> SubscriptionsSlice<'a>[src]

pub fn signature(&self) -> Signature[src]

Trait Implementations

impl<'a> AsRef<[u8]> for GossipSlice<'a>[src]

impl<'a> Clone for GossipSlice<'a>[src]

impl<'a> Copy for GossipSlice<'a>[src]

impl<'a> Debug for GossipSlice<'a>[src]

impl<'a> Eq for GossipSlice<'a>[src]

impl<'a> Hash for GossipSlice<'a>[src]

impl<'a> PartialEq<GossipSlice<'a>> for GossipSlice<'a>[src]

impl<'a> StructuralEq for GossipSlice<'a>[src]

impl<'a> StructuralPartialEq for GossipSlice<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for GossipSlice<'a>[src]

impl<'a> Send for GossipSlice<'a>[src]

impl<'a> Sync for GossipSlice<'a>[src]

impl<'a> Unpin for GossipSlice<'a>[src]

impl<'a> UnwindSafe for GossipSlice<'a>[src]

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> CallHasher for T where
    T: Hash

impl<T> From<T> for T[src]

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

impl<T> ToHex for T where
    T: AsRef<[u8]>, 
[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>,