pub struct DailyRecommendationsDto {
pub ruleset_id: String,
pub ruleset_version: String,
pub profile: String,
pub scope: RecommendationScopeDto,
pub version: String,
pub summary_vi: String,
pub summary_en: String,
pub active_packs: Vec<ActiveRecommendationPackDto>,
pub activities: Vec<SynthesizedRecommendationDto>,
}Fields§
§ruleset_id: String§ruleset_version: String§profile: String§scope: RecommendationScopeDto§version: String§summary_vi: String§summary_en: String§active_packs: Vec<ActiveRecommendationPackDto>§activities: Vec<SynthesizedRecommendationDto>Trait Implementations§
Source§impl Clone for DailyRecommendationsDto
impl Clone for DailyRecommendationsDto
Source§fn clone(&self) -> DailyRecommendationsDto
fn clone(&self) -> DailyRecommendationsDto
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 DailyRecommendationsDto
impl Debug for DailyRecommendationsDto
Source§impl<'de> Deserialize<'de> for DailyRecommendationsDto
impl<'de> Deserialize<'de> for DailyRecommendationsDto
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 From<&DailyRecommendations> for DailyRecommendationsDto
impl From<&DailyRecommendations> for DailyRecommendationsDto
Source§fn from(value: &DailyRecommendations) -> Self
fn from(value: &DailyRecommendations) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DailyRecommendationsDto
impl RefUnwindSafe for DailyRecommendationsDto
impl Send for DailyRecommendationsDto
impl Sync for DailyRecommendationsDto
impl Unpin for DailyRecommendationsDto
impl UnsafeUnpin for DailyRecommendationsDto
impl UnwindSafe for DailyRecommendationsDto
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