Struct noodles_csi::Writer[][src]

pub struct Writer<W> where
    W: Write
{ /* fields omitted */ }
Expand description

A CSI writer.

Implementations

Creates a CSI writer.

Examples

use noodles_csi as csi;
let writer = csi::Writer::new(Vec::new());

Writes a coordinate-sorted index (CSI).

Examples

use noodles_csi as csi;
let index = csi::Index::default();
let mut writer = csi::Writer::new(Vec::new());
writer.write_index(&index)?;

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.