pub trait LogIdOptionExt {
    // Required methods
    fn index(&self) -> Option<u64>;
    fn next_index(&self) -> u64;
}

Required Methods§

source

fn index(&self) -> Option<u64>

source

fn next_index(&self) -> u64

Implementations on Foreign Types§

source§

impl<NID: NodeId> LogIdOptionExt for Option<LogId<NID>>

source§

fn index(&self) -> Option<u64>

source§

fn next_index(&self) -> u64

source§

impl<NID: NodeId> LogIdOptionExt for Option<&LogId<NID>>

source§

fn index(&self) -> Option<u64>

source§

fn next_index(&self) -> u64

Implementors§