CdrVersion

Type Alias CdrVersion 

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

Aliased Type§

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

Variants§

§

Certain(Versioned<'buf>)

If the Version of the object is certain, the Versioned object is stored here.

§

Uncertain(Unversioned<'buf>)

The version can’t be determined with certainty. The object with an uncertain version is stored here.