pub struct Roots<File: ManagedFile> { /* private fields */ }Expand description
A multi-tree transactional B-Tree database.
Implementations§
Source§impl<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§
Source§impl<File: ManagedFile> Clone for Roots<File>
impl<File: ManagedFile> Clone for Roots<File>
Auto Trait Implementations§
impl<File> Freeze for Roots<File>
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§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more