pub struct DaySnapshot {
pub ruleset_id: String,
pub ruleset_version: String,
pub profile: String,
pub context: DayContext,
pub day_fortune: DayFortune,
pub daily_recommendations: DailyRecommendations,
pub contextual_recommendations: Option<DailyRecommendations>,
}Fields§
§ruleset_id: String§ruleset_version: String§profile: String§context: DayContext§day_fortune: DayFortune§daily_recommendations: DailyRecommendations§contextual_recommendations: Option<DailyRecommendations>Trait Implementations§
Source§impl Clone for DaySnapshot
impl Clone for DaySnapshot
Source§fn clone(&self) -> DaySnapshot
fn clone(&self) -> DaySnapshot
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 moreAuto Trait Implementations§
impl Freeze for DaySnapshot
impl RefUnwindSafe for DaySnapshot
impl Send for DaySnapshot
impl Sync for DaySnapshot
impl Unpin for DaySnapshot
impl UnsafeUnpin for DaySnapshot
impl UnwindSafe for DaySnapshot
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