pub struct RepositoryCodeSymbolRecord {Show 14 fields
pub repository_id: String,
pub source_scope: String,
pub symbol_snapshot_id: String,
pub canonical_symbol_id: String,
pub file_id: String,
pub path: String,
pub language_id: String,
pub name: String,
pub qualified_name: String,
pub kind: String,
pub signature: String,
pub doc_comment: Option<String>,
pub byte_range: RepositoryCodeRange,
pub line_range: RepositoryCodeRange,
}Expand description
Symbol definition extracted from tree-sitter syntax.
Fields§
§repository_id: String§source_scope: String§symbol_snapshot_id: String§canonical_symbol_id: String§file_id: String§path: String§language_id: String§name: String§qualified_name: String§kind: String§signature: String§doc_comment: Option<String>§byte_range: RepositoryCodeRange§line_range: RepositoryCodeRangeTrait Implementations§
Source§impl Clone for RepositoryCodeSymbolRecord
impl Clone for RepositoryCodeSymbolRecord
Source§fn clone(&self) -> RepositoryCodeSymbolRecord
fn clone(&self) -> RepositoryCodeSymbolRecord
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 RepositoryCodeSymbolRecord
impl Debug for RepositoryCodeSymbolRecord
Source§impl<'de> Deserialize<'de> for RepositoryCodeSymbolRecord
impl<'de> Deserialize<'de> for RepositoryCodeSymbolRecord
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
Source§impl PartialEq for RepositoryCodeSymbolRecord
impl PartialEq for RepositoryCodeSymbolRecord
Source§fn eq(&self, other: &RepositoryCodeSymbolRecord) -> bool
fn eq(&self, other: &RepositoryCodeSymbolRecord) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for RepositoryCodeSymbolRecord
impl StructuralPartialEq for RepositoryCodeSymbolRecord
Auto Trait Implementations§
impl Freeze for RepositoryCodeSymbolRecord
impl RefUnwindSafe for RepositoryCodeSymbolRecord
impl Send for RepositoryCodeSymbolRecord
impl Sync for RepositoryCodeSymbolRecord
impl Unpin for RepositoryCodeSymbolRecord
impl UnsafeUnpin for RepositoryCodeSymbolRecord
impl UnwindSafe for RepositoryCodeSymbolRecord
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