Skip to main content

Terminator

Type Alias Terminator 

Source
pub type Terminator = TerminatorKind;

Aliased Type§

pub enum Terminator {
    Lf,
    CrLf,
    None,
}

Variants§

§

Lf

A single LF byte terminated the record.

§

CrLf

A CR byte immediately followed by LF and both bytes terminated the record.

§

None

The record ended at EOF without a terminator.