pub struct ProjectRateLimitListResponse {
pub data: Vec<ProjectRateLimit>,
pub first_id: String,
pub last_id: String,
pub has_more: bool,
}
Fields§
§data: Vec<ProjectRateLimit>
§first_id: String
§last_id: String
§has_more: bool
Implementations§
Source§impl ProjectRateLimitListResponse
impl ProjectRateLimitListResponse
Sourcepub fn builder() -> ProjectRateLimitListResponseBuilder<((), (), (), ())>
pub fn builder() -> ProjectRateLimitListResponseBuilder<((), (), (), ())>
Create a builder for building ProjectRateLimitListResponse
.
On the builder, call .data(...)
, .first_id(...)
, .last_id(...)
, .has_more(...)
to set the values of the fields.
Finally, call .build()
to create the instance of ProjectRateLimitListResponse
.
Trait Implementations§
Source§impl Clone for ProjectRateLimitListResponse
impl Clone for ProjectRateLimitListResponse
Source§fn clone(&self) -> ProjectRateLimitListResponse
fn clone(&self) -> ProjectRateLimitListResponse
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 ProjectRateLimitListResponse
impl Debug for ProjectRateLimitListResponse
Source§impl<'de> Deserialize<'de> for ProjectRateLimitListResponse
impl<'de> Deserialize<'de> for ProjectRateLimitListResponse
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 ProjectRateLimitListResponse
impl PartialEq for ProjectRateLimitListResponse
Source§fn eq(&self, other: &ProjectRateLimitListResponse) -> bool
fn eq(&self, other: &ProjectRateLimitListResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ProjectRateLimitListResponse
Auto Trait Implementations§
impl Freeze for ProjectRateLimitListResponse
impl RefUnwindSafe for ProjectRateLimitListResponse
impl Send for ProjectRateLimitListResponse
impl Sync for ProjectRateLimitListResponse
impl Unpin for ProjectRateLimitListResponse
impl UnwindSafe for ProjectRateLimitListResponse
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