pub struct CrossContextResult {
pub context_id: String,
pub context_role: ContextRole,
pub matches: Vec<SymbolMatch>,
}Expand description
The result of a cross-context symbol query for a single context.
Fields§
§context_id: StringWhich context produced these matches.
context_role: ContextRoleRole of the matching context.
matches: Vec<SymbolMatch>Matching symbols within the context.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CrossContextResult
impl RefUnwindSafe for CrossContextResult
impl Send for CrossContextResult
impl Sync for CrossContextResult
impl Unpin for CrossContextResult
impl UnsafeUnpin for CrossContextResult
impl UnwindSafe for CrossContextResult
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