pub struct ExploreReport {
pub query: String,
pub max_files: usize,
pub budget_guidance: String,
pub source_files: Vec<ExploreSourceFile>,
pub relationships: Vec<ExploreRelationship>,
pub additional_files: Vec<String>,
pub warnings: Vec<String>,
pub truncated: bool,
pub truncated_reason: Option<String>,
}Fields§
§query: String§max_files: usize§budget_guidance: String§source_files: Vec<ExploreSourceFile>§relationships: Vec<ExploreRelationship>§additional_files: Vec<String>§warnings: Vec<String>§truncated: bool§truncated_reason: Option<String>Trait Implementations§
Source§impl Clone for ExploreReport
impl Clone for ExploreReport
Source§fn clone(&self) -> ExploreReport
fn clone(&self) -> ExploreReport
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 ExploreReport
impl Debug for ExploreReport
Auto Trait Implementations§
impl Freeze for ExploreReport
impl RefUnwindSafe for ExploreReport
impl Send for ExploreReport
impl Sync for ExploreReport
impl Unpin for ExploreReport
impl UnsafeUnpin for ExploreReport
impl UnwindSafe for ExploreReport
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