pub struct ActivityListItem {
pub activity_arn: String,
pub creation_date: f64,
pub name: String,
}
Expand description
Contains details about an activity.
Fields§
§activity_arn: String
The Amazon Resource Name (ARN) that identifies the activity.
creation_date: f64
The date the activity is created.
name: String
The name of the activity.
A name must not contain:
-
white space
-
brackets
< > { } [ ]
-
wildcard characters
? *
-
special characters
" # % \ ^ | ~ ` $ & , ; : /
-
control characters (
U+0000-001F
,U+007F-009F
)
To enable logging with CloudWatch Logs, the name should only contain 0-9, A-Z, a-z, - and _.
Trait Implementations§
Source§impl Clone for ActivityListItem
impl Clone for ActivityListItem
Source§fn clone(&self) -> ActivityListItem
fn clone(&self) -> ActivityListItem
Returns a copy 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 ActivityListItem
impl Debug for ActivityListItem
Source§impl Default for ActivityListItem
impl Default for ActivityListItem
Source§fn default() -> ActivityListItem
fn default() -> ActivityListItem
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ActivityListItem
impl<'de> Deserialize<'de> for ActivityListItem
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 ActivityListItem
impl PartialEq for ActivityListItem
impl StructuralPartialEq for ActivityListItem
Auto Trait Implementations§
impl Freeze for ActivityListItem
impl RefUnwindSafe for ActivityListItem
impl Send for ActivityListItem
impl Sync for ActivityListItem
impl Unpin for ActivityListItem
impl UnwindSafe for ActivityListItem
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