pub struct RirDatabaseStorage {}Expand description
Representative struct for the query group.
Trait Implementations§
Source§impl HasQueryGroup<RirDatabaseStorage> for RootDatabase
impl HasQueryGroup<RirDatabaseStorage> for RootDatabase
Source§fn group_storage(&self) -> &<RirDatabaseStorage as QueryGroup>::GroupStorage
fn group_storage(&self) -> &<RirDatabaseStorage as QueryGroup>::GroupStorage
Access the group storage struct from the database.
Source§impl QueryGroup for RirDatabaseStorage
impl QueryGroup for RirDatabaseStorage
Source§type DynDb = dyn RirDatabase
type DynDb = dyn RirDatabase
Dyn version of the associated database trait.
type GroupStorage = RirDatabaseGroupStorage__
Auto Trait Implementations§
impl Freeze for RirDatabaseStorage
impl RefUnwindSafe for RirDatabaseStorage
impl Send for RirDatabaseStorage
impl Sync for RirDatabaseStorage
impl Unpin for RirDatabaseStorage
impl UnsafeUnpin for RirDatabaseStorage
impl UnwindSafe for RirDatabaseStorage
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