pub trait DatabaseHeight:
PartialEq
+ Default
+ Debug
+ Copy
+ Send
+ Sync {
// Required methods
fn as_u64(&self) -> u64;
fn advance_height(&self) -> Option<Self>;
fn rollback_height(&self) -> Option<Self>;
}
Required Methods§
fn as_u64(&self) -> u64
fn advance_height(&self) -> Option<Self>
fn rollback_height(&self) -> Option<Self>
Object Safety§
This trait is not object safe.