pub struct BedReader { /* private fields */ }Expand description
BED file reader (streaming, memory-efficient)
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BedReader
impl !RefUnwindSafe for BedReader
impl !Send for BedReader
impl !Sync for BedReader
impl Unpin for BedReader
impl UnsafeUnpin for BedReader
impl !UnwindSafe for BedReader
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> Filterable for T
impl<T> Filterable for T
Source§fn filter<F>(self, filter: F) -> FilteredReader<Self::Record, Self, F>where
F: RecordFilter<Self::Record>,
fn filter<F>(self, filter: F) -> FilteredReader<Self::Record, Self, F>where
F: RecordFilter<Self::Record>,
Apply a filter to this reader Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more