pub struct Session {
pub id: String,
pub day: String,
pub start_datetime: String,
pub end_datetime: String,
pub type: MomentType,
pub heart_rate: Option<Sample>,
pub heart_rate_variability: Option<Sample>,
pub mood: Option<MomentMood>,
pub motion_count: Option<Sample>,
}
Fields§
§id: String
§day: String
§start_datetime: String
§end_datetime: String
§type: MomentType
§heart_rate: Option<Sample>
§heart_rate_variability: Option<Sample>
§mood: Option<MomentMood>
§motion_count: Option<Sample>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Session
impl<'de> Deserialize<'de> for Session
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
impl StructuralPartialEq for Session
Auto Trait Implementations§
impl Freeze for Session
impl RefUnwindSafe for Session
impl Send for Session
impl Sync for Session
impl Unpin for Session
impl UnwindSafe for Session
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