pub struct ExplainReport {
pub requested_intent: Option<String>,
pub intent: String,
pub summary: String,
pub recommendation: Recommendation,
pub confidence: Confidence,
pub tradeoffs: Vec<Tradeoff>,
pub trust_notes: Vec<TrustNote>,
pub receipts: Vec<Receipt>,
}Fields§
§requested_intent: Option<String>§intent: String§summary: String§recommendation: Recommendation§confidence: Confidence§tradeoffs: Vec<Tradeoff>§trust_notes: Vec<TrustNote>§receipts: Vec<Receipt>Trait Implementations§
Source§impl Clone for ExplainReport
impl Clone for ExplainReport
Source§fn clone(&self) -> ExplainReport
fn clone(&self) -> ExplainReport
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 ExplainReport
impl Debug for ExplainReport
Source§impl PartialEq for ExplainReport
impl PartialEq for ExplainReport
Source§impl Serialize for ExplainReport
impl Serialize for ExplainReport
impl Eq for ExplainReport
impl StructuralPartialEq for ExplainReport
Auto Trait Implementations§
impl Freeze for ExplainReport
impl RefUnwindSafe for ExplainReport
impl Send for ExplainReport
impl Sync for ExplainReport
impl Unpin for ExplainReport
impl UnsafeUnpin for ExplainReport
impl UnwindSafe for ExplainReport
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