CdrVersion

Type Alias CdrVersion 

Source
pub type CdrVersion<'buf> = Version<Versioned<'buf>, Unversioned<'buf>>;
Expand description

The result of calling cdr::parse.

Aliased Type§

pub enum CdrVersion<'buf> {
    Certain(Versioned<'buf>),
    Uncertain(Unversioned<'buf>),
}

Variants§

§

Certain(Versioned<'buf>)

The version of the object V is certain.

§

Uncertain(Unversioned<'buf>)

The version of the object U is uncertain.