pub struct FilesDatabase {}Expand description
Representative struct for the query group.
Trait Implementations§
Source§impl HasQueryGroup<FilesDatabase> for FilesDatabaseForTesting
impl HasQueryGroup<FilesDatabase> for FilesDatabaseForTesting
Source§fn group_storage(&self) -> &<FilesDatabase as QueryGroup>::GroupStorage
fn group_storage(&self) -> &<FilesDatabase as QueryGroup>::GroupStorage
Access the group storage struct from the database.
Source§fn group_storage_mut(
&mut self,
) -> (&<FilesDatabase as QueryGroup>::GroupStorage, &mut Runtime)
fn group_storage_mut( &mut self, ) -> (&<FilesDatabase as QueryGroup>::GroupStorage, &mut Runtime)
Access the group storage struct from the database.
Also returns a ref to the
Runtime, since otherwise
the database is borrowed and one cannot get access to it.Source§impl QueryGroup for FilesDatabase
impl QueryGroup for FilesDatabase
Source§type DynDb = dyn FilesGroup
type DynDb = dyn FilesGroup
Dyn version of the associated database trait.
type GroupStorage = FilesGroupGroupStorage__
Auto Trait Implementations§
impl Freeze for FilesDatabase
impl RefUnwindSafe for FilesDatabase
impl Send for FilesDatabase
impl Sync for FilesDatabase
impl Unpin for FilesDatabase
impl UnwindSafe for FilesDatabase
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more