pub struct ActivityResponse {
pub data: Vec<ActivityData>,
}Expand description
Response from GET /activity.
Fields§
§data: Vec<ActivityData>Per-row activity data.
Trait Implementations§
Source§impl Clone for ActivityResponse
impl Clone for ActivityResponse
Source§fn clone(&self) -> ActivityResponse
fn clone(&self) -> ActivityResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ActivityResponse
impl Debug for ActivityResponse
Source§impl Default for ActivityResponse
impl Default for ActivityResponse
Source§fn default() -> ActivityResponse
fn default() -> ActivityResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ActivityResponse
impl<'de> Deserialize<'de> for ActivityResponse
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 ActivityResponse
impl PartialEq for ActivityResponse
Source§impl Serialize for ActivityResponse
impl Serialize for ActivityResponse
impl StructuralPartialEq for ActivityResponse
Auto Trait Implementations§
impl Freeze for ActivityResponse
impl RefUnwindSafe for ActivityResponse
impl Send for ActivityResponse
impl Sync for ActivityResponse
impl Unpin for ActivityResponse
impl UnsafeUnpin for ActivityResponse
impl UnwindSafe for ActivityResponse
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