Trait glin::buffer::Cast[][src]

pub trait Cast<T> {
    type CastTo;
    fn cast(self) -> Self::CastTo;
}

Associated Types

type CastTo[src]

Loading content...

Required methods

fn cast(self) -> Self::CastTo[src]

Loading content...

Implementors

impl<T> Cast<T> for Buffer<u8>[src]

type CastTo = Buffer<T>

impl<T> Cast<T> for BufferStorage<u8>[src]

impl<T, B: Cast<T> + TypedBuffer<u8>> Cast<T> for Range<u8, B, B>[src]

type CastTo = Range<T, <B as Cast<T>>::CastTo, <B as Cast<T>>::CastTo>

impl<T: 'static> Cast<T> for SharedBuffer<u8>[src]

type CastTo = SharedBuffer<T>

impl<T: 'static> Cast<T> for SharedBufferStorage<u8>[src]

Loading content...