[][src]Struct d4::Header

pub struct Header { /* fields omitted */ }

The D4 file header struct, this is store in the ".metadata" stream in a D4 file in JSON format

Implementations

impl Header[src]

pub fn new() -> Self[src]

Build a new header

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

Assign dictionary to the header

pub fn chrom_list(&self) -> &[Chrom][src]

Get a reference to current chromosome list

pub fn set_chrom_list(&mut self, new_value: Vec<Chrom>)[src]

Set new chromosome list

Trait Implementations

impl<'de> Deserialize<'de> for Header[src]

impl Serialize for Header[src]

Auto Trait Implementations

impl RefUnwindSafe for Header

impl Send for Header

impl Sync for Header

impl Unpin for Header

impl UnwindSafe for Header

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

impl<T> Pointable for T

type Init = T

The type for initializers.

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