pub struct SuggestionSet {
pub suggestions: Vec<Suggestion>,
pub generated_at: String,
pub data_hash: String,
pub stats: SuggestionStats,
}Fields§
§suggestions: Vec<Suggestion>§generated_at: String§data_hash: String§stats: SuggestionStatsTrait Implementations§
Source§impl Clone for SuggestionSet
impl Clone for SuggestionSet
Source§fn clone(&self) -> SuggestionSet
fn clone(&self) -> SuggestionSet
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 SuggestionSet
impl Debug for SuggestionSet
Auto Trait Implementations§
impl Freeze for SuggestionSet
impl RefUnwindSafe for SuggestionSet
impl Send for SuggestionSet
impl Sync for SuggestionSet
impl Unpin for SuggestionSet
impl UnsafeUnpin for SuggestionSet
impl UnwindSafe for SuggestionSet
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