Struct cairo_lang_syntax::node::db::SyntaxGroupGroupStorage__
source · pub struct SyntaxGroupGroupStorage__ {
pub intern_green: Arc<<InternGreenQuery as Query>::Storage>,
pub lookup_intern_green: Arc<<InternGreenLookupQuery as Query>::Storage>,
pub intern_stable_ptr: Arc<<InternStablePtrQuery as Query>::Storage>,
pub lookup_intern_stable_ptr: Arc<<InternStablePtrLookupQuery as Query>::Storage>,
pub get_children: Arc<<GetChildrenQuery as Query>::Storage>,
}
Fields§
§intern_green: Arc<<InternGreenQuery as Query>::Storage>
§lookup_intern_green: Arc<<InternGreenLookupQuery as Query>::Storage>
§intern_stable_ptr: Arc<<InternStablePtrQuery as Query>::Storage>
§lookup_intern_stable_ptr: Arc<<InternStablePtrLookupQuery as Query>::Storage>
§get_children: Arc<<GetChildrenQuery as Query>::Storage>
Implementations§
source§impl SyntaxGroupGroupStorage__
impl SyntaxGroupGroupStorage__
pub fn fmt_index( &self, db: &(dyn SyntaxGroup + '_), input: DatabaseKeyIndex, fmt: &mut Formatter<'_>, ) -> Result
pub fn maybe_changed_since( &self, db: &(dyn SyntaxGroup + '_), input: DatabaseKeyIndex, revision: Revision, ) -> bool
pub fn for_each_query( &self, _runtime: &Runtime, op: &mut dyn FnMut(&dyn QueryStorageMassOps), )
Auto Trait Implementations§
impl Freeze for SyntaxGroupGroupStorage__
impl RefUnwindSafe for SyntaxGroupGroupStorage__
impl Send for SyntaxGroupGroupStorage__
impl Sync for SyntaxGroupGroupStorage__
impl Unpin for SyntaxGroupGroupStorage__
impl UnwindSafe for SyntaxGroupGroupStorage__
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> 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