[][src]Struct bigtools::bigbedread::BigBedRead

pub struct BigBedRead<R, S> where
    R: Reopen<S>,
    S: SeekableRead
{ pub info: BBIFileInfo, // some fields omitted }

Fields

info: BBIFileInfo

Methods

impl BigBedRead<ReopenableFile, File>[src]

impl<R, S> BigBedRead<R, S> where
    R: Reopen<S>,
    S: SeekableRead
[src]

pub fn from(reopen: R) -> Result<Self, BigBedReadAttachError>[src]

impl<R: 'static, S: 'static> BigBedRead<R, S> where
    R: Reopen<S>,
    S: SeekableRead
[src]

pub fn get_interval<'a>(
    &'a mut self,
    chrom_name: &str,
    start: u32,
    end: u32
) -> Result<impl Iterator<Item = Result<BedEntry>> + Send + 'a>
[src]

pub fn get_interval_move(
    self,
    chrom_name: &str,
    start: u32,
    end: u32
) -> Result<impl Iterator<Item = Result<BedEntry>> + Send>
[src]

pub fn get_zoom_interval<'a>(
    &'a mut self,
    chrom_name: &str,
    start: u32,
    end: u32,
    reduction_level: u32
) -> Result<impl Iterator<Item = Result<ZoomRecord>> + Send + 'a>
[src]

Trait Implementations

impl<R, S> BBIRead<S> for BigBedRead<R, S> where
    R: Reopen<S>,
    S: SeekableRead
[src]

impl<R, S> Clone for BigBedRead<R, S> where
    R: Reopen<S>,
    S: SeekableRead
[src]

Auto Trait Implementations

impl<R, S> Send for BigBedRead<R, S>

impl<R, S> Sync for BigBedRead<R, S> where
    R: Sync,
    S: Sync

impl<R, S> Unpin for BigBedRead<R, S> where
    R: Unpin,
    S: Unpin

impl<R, S> UnwindSafe for BigBedRead<R, S> where
    R: UnwindSafe,
    S: UnwindSafe

impl<R, S> RefUnwindSafe for BigBedRead<R, S> where
    R: RefUnwindSafe,
    S: RefUnwindSafe

Blanket Implementations

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

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

type Err = <U as TryFrom<T>>::Err