[][src]Struct poldercast::SubscriptionsSlice

pub struct SubscriptionsSlice<'a>(_);

Implementations

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

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

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

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

pub fn number_subscriptions(self) -> usize[src]

pub fn iter(self) -> SubscriptionIter<'a>

Notable traits for SubscriptionIter<'a>

impl<'a> Iterator for SubscriptionIter<'a> type Item = SubscriptionSlice<'a>;
[src]

pub fn pop_front(&mut self) -> Option<SubscriptionSlice<'a>>[src]

pub fn pop_back(&mut self) -> Option<SubscriptionSlice<'a>>[src]

pub fn get(self, index: usize) -> Option<SubscriptionSlice<'a>>[src]

Trait Implementations

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

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

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

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

impl<'a> IntoIterator for SubscriptionsSlice<'a>[src]

type IntoIter = SubscriptionIter<'a>

Which kind of iterator are we turning this into?

type Item = SubscriptionSlice<'a>

The type of the elements being iterated over.

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