pub struct ActivityListResult {
pub value: Vec<Activity>,
pub next_link: Option<String>,
}Expand description
The response model for the list activity operation.
Fields§
§value: Vec<Activity>Gets or sets a list of activities.
next_link: Option<String>Gets or sets the next link.
Implementations§
Trait Implementations§
Source§impl Clone for ActivityListResult
impl Clone for ActivityListResult
Source§fn clone(&self) -> ActivityListResult
fn clone(&self) -> ActivityListResult
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 Continuable for ActivityListResult
impl Continuable for ActivityListResult
type Continuation = String
fn continuation(&self) -> Option<Self::Continuation>
Source§impl Debug for ActivityListResult
impl Debug for ActivityListResult
Source§impl Default for ActivityListResult
impl Default for ActivityListResult
Source§fn default() -> ActivityListResult
fn default() -> ActivityListResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ActivityListResult
impl<'de> Deserialize<'de> for ActivityListResult
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 ActivityListResult
impl PartialEq for ActivityListResult
Source§impl Serialize for ActivityListResult
impl Serialize for ActivityListResult
impl StructuralPartialEq for ActivityListResult
Auto Trait Implementations§
impl Freeze for ActivityListResult
impl RefUnwindSafe for ActivityListResult
impl Send for ActivityListResult
impl Sync for ActivityListResult
impl Unpin for ActivityListResult
impl UnwindSafe for ActivityListResult
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