pub struct CodeIndex {
pub generation: ResourceGeneration,
pub catalog_generation: ResourceGeneration,
pub identity_scheme: String,
pub sources: Vec<SourceFileRecord>,
pub symbols: RecordTable<SymbolRecord>,
pub references: RecordTable<ReferenceRecord>,
pub timings: CodeIndexTimings,
}Fields§
§generation: ResourceGeneration§catalog_generation: ResourceGeneration§identity_scheme: String§sources: Vec<SourceFileRecord>§symbols: RecordTable<SymbolRecord>§references: RecordTable<ReferenceRecord>§timings: CodeIndexTimingsImplementations§
Source§impl CodeIndex
impl CodeIndex
pub fn new( generation: ResourceGeneration, catalog_generation: ResourceGeneration, symbols: Vec<SymbolRecord>, ) -> Self
pub fn with_references( generation: ResourceGeneration, catalog_generation: ResourceGeneration, symbols: Vec<SymbolRecord>, references: Vec<ReferenceRecord>, ) -> Self
Trait Implementations§
impl Eq for CodeIndex
impl StructuralPartialEq for CodeIndex
Auto Trait Implementations§
impl Freeze for CodeIndex
impl RefUnwindSafe for CodeIndex
impl Send for CodeIndex
impl Sync for CodeIndex
impl Unpin for CodeIndex
impl UnsafeUnpin for CodeIndex
impl UnwindSafe for CodeIndex
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.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