pub struct ActivityHistoryItem {
pub status: Status,
pub active_duration_seconds: i32,
pub created_date_time: String,
pub last_active_date_time: String,
pub last_modified_date_time: String,
pub expiration_date_time: String,
pub started_date_time: String,
pub user_timezone: String,
pub activity: UserActivity,
}
Fields§
§status: Status
§active_duration_seconds: i32
§created_date_time: String
§last_active_date_time: String
§last_modified_date_time: String
§expiration_date_time: String
§started_date_time: String
§user_timezone: String
§activity: UserActivity
Trait Implementations§
Source§impl Clone for ActivityHistoryItem
impl Clone for ActivityHistoryItem
Source§fn clone(&self) -> ActivityHistoryItem
fn clone(&self) -> ActivityHistoryItem
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 ActivityHistoryItem
impl Debug for ActivityHistoryItem
Source§impl<'de> Deserialize<'de> for ActivityHistoryItem
impl<'de> Deserialize<'de> for ActivityHistoryItem
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 ActivityHistoryItem
impl PartialEq for ActivityHistoryItem
Source§impl Serialize for ActivityHistoryItem
impl Serialize for ActivityHistoryItem
impl Eq for ActivityHistoryItem
impl StructuralPartialEq for ActivityHistoryItem
Auto Trait Implementations§
impl Freeze for ActivityHistoryItem
impl RefUnwindSafe for ActivityHistoryItem
impl Send for ActivityHistoryItem
impl Sync for ActivityHistoryItem
impl Unpin for ActivityHistoryItem
impl UnwindSafe for ActivityHistoryItem
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