pub struct ScipReadResult {
pub project_root: String,
pub definitions: Vec<ScipDefinition>,
pub references: Vec<ScipReference>,
pub externals: Vec<ScipExternal>,
pub covered_files: Vec<String>,
}Expand description
Parsed result from reading a .scip file.
Fields§
§project_root: StringProject root from SCIP metadata.
definitions: Vec<ScipDefinition>All symbol definitions found.
references: Vec<ScipReference>All symbol references found.
externals: Vec<ScipExternal>All external (dependency) symbols.
covered_files: Vec<String>Set of relative file paths covered by this SCIP index.
Trait Implementations§
Source§impl Clone for ScipReadResult
impl Clone for ScipReadResult
Source§fn clone(&self) -> ScipReadResult
fn clone(&self) -> ScipReadResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ScipReadResult
impl RefUnwindSafe for ScipReadResult
impl Send for ScipReadResult
impl Sync for ScipReadResult
impl Unpin for ScipReadResult
impl UnsafeUnpin for ScipReadResult
impl UnwindSafe for ScipReadResult
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<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