pub struct ParsedFile {
pub path: String,
pub language: String,
pub symbols: Vec<Symbol>,
pub imports: Vec<Import>,
pub calls: Vec<CallSite>,
pub tests: Vec<TestCase>,
pub hash: String,
pub size_bytes: u64,
pub loc: u32,
}Fields§
§path: String§language: String§symbols: Vec<Symbol>§imports: Vec<Import>§calls: Vec<CallSite>§tests: Vec<TestCase>§hash: String§size_bytes: u64§loc: u32Trait Implementations§
Source§impl Clone for ParsedFile
impl Clone for ParsedFile
Source§fn clone(&self) -> ParsedFile
fn clone(&self) -> ParsedFile
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 ParsedFile
impl Debug for ParsedFile
Source§impl<'de> Deserialize<'de> for ParsedFile
impl<'de> Deserialize<'de> for ParsedFile
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 ParsedFile
impl RefUnwindSafe for ParsedFile
impl Send for ParsedFile
impl Sync for ParsedFile
impl Unpin for ParsedFile
impl UnsafeUnpin for ParsedFile
impl UnwindSafe for ParsedFile
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