Struct buffer::CapAt[][src]

pub struct CapAt<'data, T: Buffer<'data>> { /* fields omitted */ }

The result of a cap_at call on a buffer.

See its documentation for more info.

Trait Implementations

impl<'data, T: Buffer<'data>> Buffer<'data> for CapAt<'data, T>[src]

type Intermediate = CapAtBuffer<'data, T::Intermediate>

Intermediate result of converting the T: Buffer into a BufferRef.

Auto Trait Implementations

impl<'data, T> RefUnwindSafe for CapAt<'data, T> where
    T: RefUnwindSafe

impl<'data, T> Send for CapAt<'data, T> where
    T: Send

impl<'data, T> Sync for CapAt<'data, T> where
    T: Sync

impl<'data, T> Unpin for CapAt<'data, T> where
    T: Unpin

impl<'data, T> UnwindSafe for CapAt<'data, T> where
    T: 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> From<T> for T[src]

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

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.