pub enum RecommendationAnalytics {
LowConfidenceRecommendations(Box<LowConfidenceRecommendations>),
RecommendationQueries(Box<RecommendationQueries>),
}
Variants§
LowConfidenceRecommendations(Box<LowConfidenceRecommendations>)
RecommendationQueries(Box<RecommendationQueries>)
Trait Implementations§
Source§impl Clone for RecommendationAnalytics
impl Clone for RecommendationAnalytics
Source§fn clone(&self) -> RecommendationAnalytics
fn clone(&self) -> RecommendationAnalytics
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 RecommendationAnalytics
impl Debug for RecommendationAnalytics
Source§impl Default for RecommendationAnalytics
impl Default for RecommendationAnalytics
Source§impl<'de> Deserialize<'de> for RecommendationAnalytics
impl<'de> Deserialize<'de> for RecommendationAnalytics
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
Source§impl PartialEq for RecommendationAnalytics
impl PartialEq for RecommendationAnalytics
Source§impl Serialize for RecommendationAnalytics
impl Serialize for RecommendationAnalytics
impl StructuralPartialEq for RecommendationAnalytics
Auto Trait Implementations§
impl Freeze for RecommendationAnalytics
impl RefUnwindSafe for RecommendationAnalytics
impl Send for RecommendationAnalytics
impl Sync for RecommendationAnalytics
impl Unpin for RecommendationAnalytics
impl UnwindSafe for RecommendationAnalytics
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