pub struct ListActivitiesResponse {
pub activities: Vec<Activity>,
pub next_page_token: Option<String>,
}Expand description
Response from listing activities.
Fields§
§activities: Vec<Activity>The activities.
next_page_token: Option<String>Token for the next page, if any.
Trait Implementations§
Source§impl Clone for ListActivitiesResponse
impl Clone for ListActivitiesResponse
Source§fn clone(&self) -> ListActivitiesResponse
fn clone(&self) -> ListActivitiesResponse
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 ListActivitiesResponse
impl Debug for ListActivitiesResponse
Source§impl<'de> Deserialize<'de> for ListActivitiesResponse
impl<'de> Deserialize<'de> for ListActivitiesResponse
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
Auto Trait Implementations§
impl Freeze for ListActivitiesResponse
impl RefUnwindSafe for ListActivitiesResponse
impl Send for ListActivitiesResponse
impl Sync for ListActivitiesResponse
impl Unpin for ListActivitiesResponse
impl UnwindSafe for ListActivitiesResponse
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