Trait PosEntry

Source
pub trait PosEntry:
    Readable
    + Writeable
    + Copy {
    // Required method
    fn pos(&self) -> u64;
}
Expand description

Something that tracks pos (in an MMR).

Required Methods§

Source

fn pos(&self) -> u64

Accessor for the underlying (MMR) pos.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§