pub struct SymbolMatch {
pub symbol: String,
pub path: String,
}Expand description
A symbol match from context query.
Fields§
§symbol: StringThe symbol name.
path: StringThe file path containing the symbol.
Trait Implementations§
Source§impl Clone for SymbolMatch
impl Clone for SymbolMatch
Source§fn clone(&self) -> SymbolMatch
fn clone(&self) -> SymbolMatch
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 moreSource§impl Debug for SymbolMatch
impl Debug for SymbolMatch
Source§impl<'de> Deserialize<'de> for SymbolMatch
impl<'de> Deserialize<'de> for SymbolMatch
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SymbolMatch
impl RefUnwindSafe for SymbolMatch
impl Send for SymbolMatch
impl Sync for SymbolMatch
impl Unpin for SymbolMatch
impl UnwindSafe for SymbolMatch
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