pub struct GetProjectEventsResponse {
pub events: Vec<ProjectEventsDatapoint>,
pub page_token: Option<String>,
}Expand description
GetProjectEventsResponse : 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 GetProjectEventsResponse
impl GetProjectEventsResponse
Sourcepub fn new(events: Vec<ProjectEventsDatapoint>) -> GetProjectEventsResponse
pub fn new(events: Vec<ProjectEventsDatapoint>) -> GetProjectEventsResponse
Response of the getProjectEvents endpoint
Trait Implementations§
Source§impl Clone for GetProjectEventsResponse
impl Clone for GetProjectEventsResponse
Source§fn clone(&self) -> GetProjectEventsResponse
fn clone(&self) -> GetProjectEventsResponse
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 GetProjectEventsResponse
impl Debug for GetProjectEventsResponse
Source§impl Default for GetProjectEventsResponse
impl Default for GetProjectEventsResponse
Source§fn default() -> GetProjectEventsResponse
fn default() -> GetProjectEventsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetProjectEventsResponse
impl<'de> Deserialize<'de> for GetProjectEventsResponse
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 GetProjectEventsResponse
impl PartialEq for GetProjectEventsResponse
Source§impl Serialize for GetProjectEventsResponse
impl Serialize for GetProjectEventsResponse
impl StructuralPartialEq for GetProjectEventsResponse
Auto Trait Implementations§
impl Freeze for GetProjectEventsResponse
impl RefUnwindSafe for GetProjectEventsResponse
impl Send for GetProjectEventsResponse
impl Sync for GetProjectEventsResponse
impl Unpin for GetProjectEventsResponse
impl UnwindSafe for GetProjectEventsResponse
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