pub trait Location:
Copy
+ Send
+ Sync
+ 'static {
// Required method
fn zeroed() -> Self;
}Expand description
Marker trait for disk location types stored in SkipList nodes. DiskLoc (12 bytes) for Bitcask, u32 (4 bytes) for FixedStore slot_id.
Required Methods§
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.