[][src]Struct d4::D4FileBuilder

pub struct D4FileBuilder { /* fields omitted */ }

Implementations

impl D4FileBuilder[src]

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

pub fn set_filter<T: Fn(&str, usize) -> bool + 'static>(
    &mut self,
    filter: T
) -> &mut Self
[src]

pub fn append_chrom<I: Iterator<Item = Chrom>>(
    &mut self,
    chrom_it: I
) -> &mut Self
[src]

pub fn load_chrom_info_from_bam<P: AsRef<Path>>(
    &mut self,
    path: P
) -> Result<&mut Self>
[src]

pub fn set_dictionary(&mut self, dict: Dictionary) -> &mut Self[src]

pub fn dictionary(&self) -> &Dictionary[src]

pub fn create<PT: PTableWriter, ST: STableWriter>(
    &mut self
) -> Result<D4FileWriter<PT, ST>>
[src]

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