pub trait Versioned {
    // Required method
    fn version(&self) -> u64;
}
Expand description

A type that has a version number.

Required Methods§

source

fn version(&self) -> u64

The version of this value.

Implementations on Foreign Types§

source§

impl Versioned for u64

source§

fn version(&self) -> u64

Implementors§