[][src]Struct barc::BarcFile

pub struct BarcFile { /* fields omitted */ }

Reference to a BARC File by Path, supporting up to 1 writer and N readers concurrently.

Methods

impl BarcFile[src]

pub fn new<P>(path: P) -> BarcFile where
    P: AsRef<Path>, 
[src]

Return new instance for the specified path, which may be an existing file, or one to be created when writer is opened.

pub fn writer(&self) -> Result<BarcWriter, BarcError>[src]

Get a writer for this file, opening the file for write (and possibly creating it, or erroring) if this is the first time called. May block on the write lock, as only one BarcWriter instance is allowed.

pub fn reader(&self) -> Result<BarcReader, BarcError>[src]

Get a reader for this file. Errors if the file does not exist.

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