Struct AnalysisHost

Source
pub struct AnalysisHost<L: AnalysisLoader = CargoAnalysisLoader> { /* private fields */ }

Implementations§

Source§

impl AnalysisHost<CargoAnalysisLoader>

Source

pub fn new(target: Target) -> AnalysisHost

Source§

impl<L: AnalysisLoader> AnalysisHost<L>

Source

pub fn new_with_loader(loader: L) -> Self

Source

pub fn reload_from_analysis( &self, analysis: Vec<Analysis>, path_prefix: &Path, base_dir: &Path, blacklist: &[impl AsRef<str> + Debug], ) -> AResult<()>

Reloads given data passed in analysis. This will first check and read on-disk data (just like reload). It then imports the data we’re passing in directly.

Source

pub fn reload(&self, path_prefix: &Path, base_dir: &Path) -> AResult<()>

Source

pub fn reload_with_blacklist( &self, path_prefix: &Path, base_dir: &Path, blacklist: &[impl AsRef<str> + Debug], ) -> AResult<()>

Source

pub fn hard_reload(&self, path_prefix: &Path, base_dir: &Path) -> AResult<()>

Reloads the entire project’s analysis data.

Source

pub fn hard_reload_with_blacklist( &self, path_prefix: &Path, base_dir: &Path, blacklist: &[impl AsRef<str> + Debug], ) -> AResult<()>

Source

pub fn has_def(&self, id: Id) -> bool

Note that self.has_def() =/> self.goto_def().is_ok(), since if the Def is in an api crate, there is no reasonable Span to jump to.

Source

pub fn get_def(&self, id: Id) -> AResult<Def>

Source

pub fn goto_def(&self, span: &Span) -> AResult<Span>

Source

pub fn for_each_child_def<F, T>(&self, id: Id, f: F) -> AResult<Vec<T>>
where F: FnMut(Id, &Def) -> T,

Source

pub fn def_parents(&self, id: Id) -> AResult<Vec<(Id, String)>>

Source

pub fn def_roots(&self) -> AResult<Vec<(Id, String)>>

Returns the name of each crate in the program and the id of the root module of that crate.

Source

pub fn id(&self, span: &Span) -> AResult<Id>

Source

pub fn crate_local_id(&self, span: &Span) -> AResult<Id>

Like id, but will only return a value if it is in the same crate as span.

Source

pub fn find_all_refs( &self, span: &Span, include_decl: bool, force_unique_spans: bool, ) -> AResult<Vec<Span>>

Source

pub fn show_type(&self, span: &Span) -> AResult<String>

Source

pub fn docs(&self, span: &Span) -> AResult<String>

Source

pub fn matching_defs(&self, stem: &str) -> AResult<Vec<Def>>

Finds Defs with names that starting with (ignoring case) stem

Source

pub fn query_defs(&self, query: SymbolQuery) -> AResult<Vec<Def>>

Source

pub fn search(&self, name: &str) -> AResult<Vec<Span>>

Search for a symbol name, returns a list of spans matching defs and refs for that name.

Source

pub fn find_all_refs_by_id(&self, id: Id) -> AResult<Vec<Span>>

Source

pub fn find_impls(&self, id: Id) -> AResult<Vec<Span>>

Source

pub fn search_for_id(&self, name: &str) -> AResult<Vec<Id>>

Search for a symbol name, returning a list of def_ids for that name.

Source

pub fn symbols(&self, file_name: &Path) -> AResult<Vec<SymbolResult>>

Source

pub fn doc_url(&self, span: &Span) -> AResult<String>

Source

pub fn src_url(&self, span: &Span) -> AResult<String>

Auto Trait Implementations§

§

impl<L = CargoAnalysisLoader> !Freeze for AnalysisHost<L>

§

impl<L> RefUnwindSafe for AnalysisHost<L>

§

impl<L> Send for AnalysisHost<L>
where L: Send,

§

impl<L> Sync for AnalysisHost<L>
where L: Send,

§

impl<L> Unpin for AnalysisHost<L>
where L: Unpin,

§

impl<L> UnwindSafe for AnalysisHost<L>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.