pub struct ContextResponse {
pub file: FileInfo,
pub related: Vec<FileInfo>,
pub dependencies: Vec<Dependency>,
}Expand description
Response with file context
Fields§
§file: FileInfoThe main file
Related files (if requested)
dependencies: Vec<Dependency>Dependency graph
Trait Implementations§
Source§impl Clone for ContextResponse
impl Clone for ContextResponse
Source§fn clone(&self) -> ContextResponse
fn clone(&self) -> ContextResponse
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 ContextResponse
impl Debug for ContextResponse
Source§impl<'de> Deserialize<'de> for ContextResponse
impl<'de> Deserialize<'de> for ContextResponse
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 ContextResponse
impl RefUnwindSafe for ContextResponse
impl Send for ContextResponse
impl Sync for ContextResponse
impl Unpin for ContextResponse
impl UnwindSafe for ContextResponse
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