[][src]Struct terminus_store::structure::bitarray::BitArrayFileBuilder

pub struct BitArrayFileBuilder<W> { /* fields omitted */ }

Implementations

impl<W: AsyncWrite> BitArrayFileBuilder<W>[src]

pub fn new(dest: W) -> BitArrayFileBuilder<W>[src]

pub fn push(
    self,
    bit: bool
) -> impl Future<Item = BitArrayFileBuilder<W>, Error = Error>
[src]

pub fn push_all<S: Stream<Item = bool, Error = Error>>(
    self,
    stream: S
) -> impl Future<Item = BitArrayFileBuilder<W>, Error = Error>
[src]

pub fn finalize(self) -> impl Future<Item = W, Error = Error>[src]

pub fn count(&self) -> u64[src]

Auto Trait Implementations

impl<W> RefUnwindSafe for BitArrayFileBuilder<W> where
    W: RefUnwindSafe

impl<W> Send for BitArrayFileBuilder<W> where
    W: Send

impl<W> Sync for BitArrayFileBuilder<W> where
    W: Sync

impl<W> Unpin for BitArrayFileBuilder<W> where
    W: Unpin

impl<W> UnwindSafe for BitArrayFileBuilder<W> where
    W: 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,