pub struct Roots<File: ManagedFile> { /* private fields */ }Expand description
A multi-tree transactional B-Tree database.
Implementations
sourceimpl<File: ManagedFile> Roots<File>
impl<File: ManagedFile> Roots<File>
sourcepub fn context(&self) -> &Context<File::Manager>
pub fn context(&self) -> &Context<File::Manager>
Returns the vault used to encrypt this database.
sourcepub fn transactions(&self) -> &TransactionManager<File::Manager>
pub fn transactions(&self) -> &TransactionManager<File::Manager>
Returns the transaction manager for this database.
sourcepub fn tree<Root: Root>(
&self,
root: TreeRoot<Root, File>
) -> Result<Tree<Root, File>, Error>
pub fn tree<Root: Root>(
&self,
root: TreeRoot<Root, File>
) -> Result<Tree<Root, File>, Error>
Opens a tree named name.
Errors
InvalidTreeName: The name contained an invalid character. For a full list of valid characters, see the documentation onInvalidTreeName.
sourcepub fn delete_tree(
&self,
name: impl Into<Cow<'static, str>>
) -> Result<bool, Error>
pub fn delete_tree(
&self,
name: impl Into<Cow<'static, str>>
) -> Result<bool, Error>
Removes a tree. Returns true if a tree was deleted.
sourcepub fn tree_names(&self) -> Result<Vec<String>, Error>
pub fn tree_names(&self) -> Result<Vec<String>, Error>
Returns a list of all the names of trees contained in this database.
sourcepub fn transaction<R: Borrow<T>, T: AnyTreeRoot<File> + ?Sized>(
&self,
trees: &[R]
) -> Result<ExecutingTransaction<File>, Error>
pub fn transaction<R: Borrow<T>, T: AnyTreeRoot<File> + ?Sized>(
&self,
trees: &[R]
) -> Result<ExecutingTransaction<File>, Error>
Begins a transaction over trees. All trees will be exclusively
accessible by the transaction. Dropping the executing transaction will
roll the transaction back.
Errors
InvalidTreeName: A tree name contained an invalid character. For a full list of valid characters, see the documentation onInvalidTreeName.
Trait Implementations
sourceimpl<File: ManagedFile> Clone for Roots<File>
impl<File: ManagedFile> Clone for Roots<File>
Auto Trait Implementations
impl<File> !RefUnwindSafe for Roots<File>
impl<File> Send for Roots<File>
impl<File> Sync for Roots<File>
impl<File> Unpin for Roots<File>
impl<File> !UnwindSafe for Roots<File>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more