pub struct GetSessionActivityResponse {
pub data: Vec<SessionActivityDatapoint>,
}Expand description
GetSessionActivityResponse : Response of the getSessionActivity endpoint
Fields§
§data: Vec<SessionActivityDatapoint>The list of data points.
Implementations§
Source§impl GetSessionActivityResponse
impl GetSessionActivityResponse
Sourcepub fn new(data: Vec<SessionActivityDatapoint>) -> GetSessionActivityResponse
pub fn new(data: Vec<SessionActivityDatapoint>) -> GetSessionActivityResponse
Response of the getSessionActivity endpoint
Trait Implementations§
Source§impl Clone for GetSessionActivityResponse
impl Clone for GetSessionActivityResponse
Source§fn clone(&self) -> GetSessionActivityResponse
fn clone(&self) -> GetSessionActivityResponse
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 GetSessionActivityResponse
impl Debug for GetSessionActivityResponse
Source§impl Default for GetSessionActivityResponse
impl Default for GetSessionActivityResponse
Source§fn default() -> GetSessionActivityResponse
fn default() -> GetSessionActivityResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetSessionActivityResponse
impl<'de> Deserialize<'de> for GetSessionActivityResponse
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
impl StructuralPartialEq for GetSessionActivityResponse
Auto Trait Implementations§
impl Freeze for GetSessionActivityResponse
impl RefUnwindSafe for GetSessionActivityResponse
impl Send for GetSessionActivityResponse
impl Sync for GetSessionActivityResponse
impl Unpin for GetSessionActivityResponse
impl UnwindSafe for GetSessionActivityResponse
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