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 · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more