pub struct ActivityTypeInfo {
pub activity_type: ActivityType,
pub creation_date: f64,
pub deprecation_date: Option<f64>,
pub description: Option<String>,
pub status: String,
}
Expand description
Detailed information about an activity type.
Fields§
§activity_type: ActivityType
The ActivityType type structure representing the activity type.
creation_date: f64
The date and time this activity type was created through RegisterActivityType.
deprecation_date: Option<f64>
If DEPRECATED, the date and time DeprecateActivityType was called.
description: Option<String>
The description of the activity type provided in RegisterActivityType.
status: String
The current status of the activity type.
Trait Implementations§
Source§impl Clone for ActivityTypeInfo
impl Clone for ActivityTypeInfo
Source§fn clone(&self) -> ActivityTypeInfo
fn clone(&self) -> ActivityTypeInfo
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 ActivityTypeInfo
impl Debug for ActivityTypeInfo
Source§impl Default for ActivityTypeInfo
impl Default for ActivityTypeInfo
Source§fn default() -> ActivityTypeInfo
fn default() -> ActivityTypeInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ActivityTypeInfo
impl<'de> Deserialize<'de> for ActivityTypeInfo
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 ActivityTypeInfo
impl PartialEq for ActivityTypeInfo
impl StructuralPartialEq for ActivityTypeInfo
Auto Trait Implementations§
impl Freeze for ActivityTypeInfo
impl RefUnwindSafe for ActivityTypeInfo
impl Send for ActivityTypeInfo
impl Sync for ActivityTypeInfo
impl Unpin for ActivityTypeInfo
impl UnwindSafe for ActivityTypeInfo
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