pub trait IRawDatabaseExt: IRawDatabase + Sized {
// Provided method
fn into_database(self) -> Database { ... }
}
Expand description
An extension trait with convenience operations on IRawDatabase
Provided Methods§
sourcefn into_database(self) -> Database
fn into_database(self) -> Database
Convert to type implementing IRawDatabase
into Database
.
When type inference is not an issue, Into::into
can be used instead.
Object Safety§
This trait is not object safe.