pub struct ListProjectRateLimitsQuery {
pub limit: Option<u32>,
pub after: Option<String>,
pub before: Option<String>,
}Available on crate feature
administration-types only.Expand description
Query parameters for listing project rate limits.
Fields§
§limit: Option<u32>A limit on the number of objects to be returned. The default is 100.
after: Option<String>A cursor for use in pagination. after is an object ID that defines your place in the
list.
before: Option<String>A cursor for use in pagination. before is an object ID that defines your place in the
list.
Trait Implementations§
Source§impl Clone for ListProjectRateLimitsQuery
impl Clone for ListProjectRateLimitsQuery
Source§fn clone(&self) -> ListProjectRateLimitsQuery
fn clone(&self) -> ListProjectRateLimitsQuery
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ListProjectRateLimitsQuery
impl Debug for ListProjectRateLimitsQuery
Source§impl Default for ListProjectRateLimitsQuery
impl Default for ListProjectRateLimitsQuery
Source§fn default() -> ListProjectRateLimitsQuery
fn default() -> ListProjectRateLimitsQuery
Returns the “default value” for a type. Read more
impl StructuralPartialEq for ListProjectRateLimitsQuery
Auto Trait Implementations§
impl Freeze for ListProjectRateLimitsQuery
impl RefUnwindSafe for ListProjectRateLimitsQuery
impl Send for ListProjectRateLimitsQuery
impl Sync for ListProjectRateLimitsQuery
impl Unpin for ListProjectRateLimitsQuery
impl UnsafeUnpin for ListProjectRateLimitsQuery
impl UnwindSafe for ListProjectRateLimitsQuery
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