pub struct GetProjectEvents {
pub events: Vec<ProjectEventsDatapoint>,
pub page_token: Option<String>,
}Expand description
GetProjectEvents : Response of the getProjectEvents endpoint
Fields§
§events: Vec<ProjectEventsDatapoint>The list of data points.
page_token: Option<String>Pagination token to be included in next page request
Implementations§
Source§impl GetProjectEvents
impl GetProjectEvents
Sourcepub fn new(events: Vec<ProjectEventsDatapoint>) -> GetProjectEvents
pub fn new(events: Vec<ProjectEventsDatapoint>) -> GetProjectEvents
Response of the getProjectEvents endpoint
Trait Implementations§
Source§impl Clone for GetProjectEvents
impl Clone for GetProjectEvents
Source§fn clone(&self) -> GetProjectEvents
fn clone(&self) -> GetProjectEvents
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 GetProjectEvents
impl Debug for GetProjectEvents
Source§impl Default for GetProjectEvents
impl Default for GetProjectEvents
Source§fn default() -> GetProjectEvents
fn default() -> GetProjectEvents
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetProjectEvents
impl<'de> Deserialize<'de> for GetProjectEvents
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 GetProjectEvents
impl PartialEq for GetProjectEvents
Source§impl Serialize for GetProjectEvents
impl Serialize for GetProjectEvents
impl StructuralPartialEq for GetProjectEvents
Auto Trait Implementations§
impl Freeze for GetProjectEvents
impl RefUnwindSafe for GetProjectEvents
impl Send for GetProjectEvents
impl Sync for GetProjectEvents
impl Unpin for GetProjectEvents
impl UnsafeUnpin for GetProjectEvents
impl UnwindSafe for GetProjectEvents
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