Skip to main content

Sequence

Trait Sequence 

Source
pub trait Sequence:
    Send
    + Sync
    + 'static {
    // Required method
    fn current_sequence(&self) -> u64;
}
Expand description

Local sequence frontier visible to this process.

Required Methods§

Source

fn current_sequence(&self) -> u64

Highest sequence number this process can currently serve.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§