pub struct ActivitiesResponse {
pub activities: Vec<ActivityItem>,
}Expand description
Response wrapper for GET /v1/accounts/:id/activities.
Fields§
§activities: Vec<ActivityItem>Activity items for the requested date range.
Trait Implementations§
Source§impl Debug for ActivitiesResponse
impl Debug for ActivitiesResponse
Source§impl<'de> Deserialize<'de> for ActivitiesResponse
impl<'de> Deserialize<'de> for ActivitiesResponse
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 ActivitiesResponse
impl RefUnwindSafe for ActivitiesResponse
impl Send for ActivitiesResponse
impl Sync for ActivitiesResponse
impl Unpin for ActivitiesResponse
impl UnsafeUnpin for ActivitiesResponse
impl UnwindSafe for ActivitiesResponse
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