pub struct UsageQuery {
pub limit: Option<i32>,
pub start_after: Option<String>,
}Expand description
Usage query parameters.
Fields§
§limit: Option<i32>Max entries per page (default 20, max 100).
start_after: Option<String>Cursor for pagination (from previous response’s next_cursor).
Trait Implementations§
Source§impl Clone for UsageQuery
impl Clone for UsageQuery
Source§fn clone(&self) -> UsageQuery
fn clone(&self) -> UsageQuery
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 UsageQuery
impl Debug for UsageQuery
Source§impl Default for UsageQuery
impl Default for UsageQuery
Source§fn default() -> UsageQuery
fn default() -> UsageQuery
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for UsageQuery
impl RefUnwindSafe for UsageQuery
impl Send for UsageQuery
impl Sync for UsageQuery
impl Unpin for UsageQuery
impl UnsafeUnpin for UsageQuery
impl UnwindSafe for UsageQuery
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