pub trait KeyspaceExt {
    fn get_keyspace(&self) -> Option<String>;
    fn set_keyspace(&mut self, keyspace: impl Into<Name>);

    fn with_keyspace(self, keyspace: impl Into<Name>) -> Self
    where
        Self: Sized
, { ... } }

Required Methods

Provided Methods

Implementors