Trait TruncateKeyspace

Source
pub trait TruncateKeyspace {
    // Required method
    fn truncate_keyspace(self, keyspace: Keyspace) -> Self;
}

Required Methods§

Source

fn truncate_keyspace(self, keyspace: Keyspace) -> Self

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.

Implementations on Foreign Types§

Source§

impl TruncateKeyspace for Vec<KvPair>

Source§

fn truncate_keyspace(self, keyspace: Keyspace) -> Self

Source§

impl TruncateKeyspace for Vec<Range<Key>>

Source§

fn truncate_keyspace(self, keyspace: Keyspace) -> Self

Source§

impl TruncateKeyspace for Vec<LockInfo>

Source§

fn truncate_keyspace(self, keyspace: Keyspace) -> Self

Source§

impl TruncateKeyspace for Range<Key>

Source§

fn truncate_keyspace(self, keyspace: Keyspace) -> Self

Implementors§