pub struct Suggestion {
pub suggestion_type: SuggestionType,
pub target_bead: String,
pub related_bead: Option<String>,
pub summary: String,
pub reason: String,
pub confidence: f64,
pub action_command: Option<String>,
pub generated_at: String,
pub metadata: BTreeMap<String, Value>,
}Fields§
§suggestion_type: SuggestionType§target_bead: String§summary: String§reason: String§confidence: f64§action_command: Option<String>§generated_at: String§metadata: BTreeMap<String, Value>Trait Implementations§
Source§impl Clone for Suggestion
impl Clone for Suggestion
Source§fn clone(&self) -> Suggestion
fn clone(&self) -> Suggestion
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 Suggestion
impl Debug for Suggestion
Auto Trait Implementations§
impl Freeze for Suggestion
impl RefUnwindSafe for Suggestion
impl Send for Suggestion
impl Sync for Suggestion
impl Unpin for Suggestion
impl UnsafeUnpin for Suggestion
impl UnwindSafe for Suggestion
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