struct ProjectedGraphRows {
relations: Vec<LogicalRelation>,
occurrences: Vec<RelationOccurrence>,
coverage: Vec<CoverageRecord>,
external_entities: Vec<GraphEntity>,
relation_dependencies: Vec<RelationDependencyKey>,
}Expand description
One graph’s normalized rows, bounded by the parser graph already in memory.
Fields§
§relations: Vec<LogicalRelation>Deduplicated logical relations owned by the graph.
occurrences: Vec<RelationOccurrence>Exact supporting source occurrences.
coverage: Vec<CoverageRecord>Coverage rows for the graph.
external_entities: Vec<GraphEntity>Content-free external entities referenced by the graph.
relation_dependencies: Vec<RelationDependencyKey>Canonical dependency keys retained by the graph relations.
Implementations§
Source§impl ProjectedGraphRows
impl ProjectedGraphRows
Trait Implementations§
Source§impl Default for ProjectedGraphRows
impl Default for ProjectedGraphRows
Source§fn default() -> ProjectedGraphRows
fn default() -> ProjectedGraphRows
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ProjectedGraphRows
impl RefUnwindSafe for ProjectedGraphRows
impl Send for ProjectedGraphRows
impl Sync for ProjectedGraphRows
impl Unpin for ProjectedGraphRows
impl UnwindSafe for ProjectedGraphRows
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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