pub struct SymbolInsightsResult {
pub files: usize,
pub symbols: usize,
pub references: usize,
pub navigable_symbols: usize,
pub non_navigable_symbols: usize,
pub languages: Vec<CountDto>,
pub kinds: Vec<CountDto>,
pub shapes: Vec<CountDto>,
pub top_files_by_symbols: Vec<CountDto>,
pub top_files_by_refs: Vec<CountDto>,
}Fields§
§files: usize§symbols: usize§references: usize§languages: Vec<CountDto>§kinds: Vec<CountDto>§shapes: Vec<CountDto>§top_files_by_symbols: Vec<CountDto>§top_files_by_refs: Vec<CountDto>Trait Implementations§
Source§impl Clone for SymbolInsightsResult
impl Clone for SymbolInsightsResult
Source§fn clone(&self) -> SymbolInsightsResult
fn clone(&self) -> SymbolInsightsResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SymbolInsightsResult
impl Debug for SymbolInsightsResult
Source§impl<'de> Deserialize<'de> for SymbolInsightsResult
impl<'de> Deserialize<'de> for SymbolInsightsResult
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
impl Eq for SymbolInsightsResult
Source§impl PartialEq for SymbolInsightsResult
impl PartialEq for SymbolInsightsResult
Source§impl Serialize for SymbolInsightsResult
impl Serialize for SymbolInsightsResult
impl StructuralPartialEq for SymbolInsightsResult
Auto Trait Implementations§
impl Freeze for SymbolInsightsResult
impl RefUnwindSafe for SymbolInsightsResult
impl Send for SymbolInsightsResult
impl Sync for SymbolInsightsResult
impl Unpin for SymbolInsightsResult
impl UnsafeUnpin for SymbolInsightsResult
impl UnwindSafe for SymbolInsightsResult
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