Struct cairo_lang_parser::db::ParserGroupGroupStorage__
source · pub struct ParserGroupGroupStorage__ {
pub priv_file_syntax_data: Arc<<PrivFileSyntaxDataQuery as Query>::Storage>,
pub file_syntax: Arc<<FileSyntaxQuery as Query>::Storage>,
pub file_module_syntax: Arc<<FileModuleSyntaxQuery as Query>::Storage>,
pub file_expr_syntax: Arc<<FileExprSyntaxQuery as Query>::Storage>,
pub file_syntax_diagnostics: Arc<<FileSyntaxDiagnosticsQuery as Query>::Storage>,
}
Fields§
§priv_file_syntax_data: Arc<<PrivFileSyntaxDataQuery as Query>::Storage>
§file_syntax: Arc<<FileSyntaxQuery as Query>::Storage>
§file_module_syntax: Arc<<FileModuleSyntaxQuery as Query>::Storage>
§file_expr_syntax: Arc<<FileExprSyntaxQuery as Query>::Storage>
§file_syntax_diagnostics: Arc<<FileSyntaxDiagnosticsQuery as Query>::Storage>
Implementations§
source§impl ParserGroupGroupStorage__
impl ParserGroupGroupStorage__
pub fn fmt_index( &self, db: &(dyn ParserGroup + '_), input: DatabaseKeyIndex, fmt: &mut Formatter<'_>, ) -> Result
pub fn maybe_changed_since( &self, db: &(dyn ParserGroup + '_), 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 ParserGroupGroupStorage__
impl RefUnwindSafe for ParserGroupGroupStorage__
impl Send for ParserGroupGroupStorage__
impl Sync for ParserGroupGroupStorage__
impl Unpin for ParserGroupGroupStorage__
impl UnwindSafe for ParserGroupGroupStorage__
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