[][src]Trait seq_io::fasta::Record

pub trait Record: BaseRecord {
    fn write_wrap<W>(&self, writer: W, wrap: usize) -> Result<()>
    where
        W: Write,
        Self: Sized
; }

FASTA record trait implemented by both RefRecord and OwnedRecord, which adds more methods to BaseRecord.

Required methods

fn write_wrap<W>(&self, writer: W, wrap: usize) -> Result<()> where
    W: Write,
    Self: Sized

Writes the record to the given io::Write instance. The sequence is wrapped to produce multi-line FASTA with a maximum width specified by wrap.

Loading content...

Implementations on Foreign Types

impl<'a, R: Record> Record for &'a R[src]

Loading content...

Implementors

impl Record for OwnedRecord[src]

impl<'a, S> Record for RefRecord<'a, S> where
    S: PositionStore
[src]

Loading content...