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