pub trait DatabaseNonBlocking {
    // Required method
    fn name(&self) -> &str;
}
Expand description

Operations that can be performed on both Database and AsyncDatabase.

Required Methods§

source

fn name(&self) -> &str

Returns the name of the database.

Implementors§