Trait obake::Versioned

source ·
pub trait Versioned: Sized {
    type Versioned: VersionTagged<Self>;
}
Expand description

Automatically implemented for the latest version of a versioned data-structure.

Note

Not intended to be hand-implemented, use versioned to derive it.

Required Associated Types§

source

type Versioned: VersionTagged<Self>

The associated type, Versioned, points to the version-tagged representation of this data-structure.

Implementors§