[][src]Struct rust_htslib::bcf::record::BufferBacked

pub struct BufferBacked<'a, T: 'a + Debug, B: Borrow<Buffer> + 'a> { /* fields omitted */ }

Implementations

impl<'a, T: 'a + Debug, B: Borrow<Buffer> + 'a> BufferBacked<'a, T, B>[src]

pub fn new(value: T, buffer: B) -> Self[src]

Constructs a new BufferBacked.

Trait Implementations

impl<'a, T: Debug + 'a, B: Debug + Borrow<Buffer> + 'a> Debug for BufferBacked<'a, T, B>[src]

impl<'a, T: 'a + Debug, B: Borrow<Buffer> + 'a> Deref for BufferBacked<'a, T, B>[src]

type Target = T

The resulting type after dereferencing.

impl<'a, T: 'a + Debug + Display, B: Borrow<Buffer> + 'a> Display for BufferBacked<'a, T, B>[src]

Auto Trait Implementations

impl<'a, T, B> RefUnwindSafe for BufferBacked<'a, T, B> where
    B: RefUnwindSafe,
    T: RefUnwindSafe
[src]

impl<'a, T, B> Send for BufferBacked<'a, T, B> where
    B: Send + Sync,
    T: Send
[src]

impl<'a, T, B> Sync for BufferBacked<'a, T, B> where
    B: Sync,
    T: Sync
[src]

impl<'a, T, B> Unpin for BufferBacked<'a, T, B> where
    B: Unpin,
    T: Unpin
[src]

impl<'a, T, B> UnwindSafe for BufferBacked<'a, T, B> where
    B: RefUnwindSafe + UnwindSafe,
    T: UnwindSafe
[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> From<T> for T[src]

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

impl<T> ToString for T where
    T: Display + ?Sized
[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.