[][src]Struct bam::index::VirtualOffset

pub struct VirtualOffset(_);

Virtual offset. Represents block_offset << 16 | contents_offset, where block_offset is u48 and represents the offset in the bgzip file to the beginning of th block (also known as coffset or compressed_offset).

contents_offset is u16 and represents offset in the uncompressed data in a single block (also known as uoffset or uncompressed_offset).

Methods

impl VirtualOffset[src]

pub fn from_raw(raw: u64) -> VirtualOffset[src]

Construct Virtual offset from raw value.

pub fn from(block_offset: u64, contents_offset: u16) -> Self[src]

Construct Virtual offset from block_offset and contents_offset.

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

Get the raw value.

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

Get the block offset. Represents the offset in the Bgzip file to the beginning of the block.

pub fn contents_offset(&self) -> u16[src]

Get the contents offset. Represents the offset into the uncompressed contents of the block.

pub fn equal(&self, block_offset: u64, contents_offset: u16) -> bool[src]

Checks if the self is the same as block_offset << 16 | contents_offset.

Trait Implementations

impl Clone for VirtualOffset[src]

impl PartialOrd<VirtualOffset> for VirtualOffset[src]

impl Copy for VirtualOffset[src]

impl Eq for VirtualOffset[src]

impl Ord for VirtualOffset[src]

impl PartialEq<VirtualOffset> for VirtualOffset[src]

impl Display for VirtualOffset[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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<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]