pub trait InitialFormat: Serialize + for<'de> Deserialize<'de> + 'static {
    const VERSION_MARKER: &'static [u8] = b"";
}
Expand description

Indicates that this type has no previous encoding version to be migrated from.

Provided Associated Constants§

source

const VERSION_MARKER: &'static [u8] = b""

A sequence of bytes to add at the beginning of the serialized string, to identify that the data is of this version.

Implementors§