pub struct ListTestClocks {
pub ending_before: Option<TestHelpersTestClockId>,
pub starting_after: Option<TestHelpersTestClockId>,
pub limit: Option<u64>,
}
Fields§
§ending_before: Option<TestHelpersTestClockId>
A cursor for use in pagination.
ending_before
is an object ID that defines your place in the list. For instance,
if you make a list request and receive 100 objects, starting with obj_bar
,
your subsequent call can include ending_before=obj_bar
in order to fetch the previous
page of the list.
starting_after: Option<TestHelpersTestClockId>
A cursor for use in pagination.
starting_after
is an object ID that defines your place in the list. For instance,
if you make a list request and receive 100 objects, ending with obj_foo
, your subsequent
call can include starting_after=obj_foo
in order to fetch the next page of the list.
limit: Option<u64>
A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.
Implementations§
Trait Implementations§
Source§impl Clone for ListTestClocks
impl Clone for ListTestClocks
Source§fn clone(&self) -> ListTestClocks
fn clone(&self) -> ListTestClocks
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 ListTestClocks
impl Debug for ListTestClocks
Source§impl Default for ListTestClocks
impl Default for ListTestClocks
Source§fn default() -> ListTestClocks
fn default() -> ListTestClocks
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ListTestClocks
impl RefUnwindSafe for ListTestClocks
impl Send for ListTestClocks
impl Sync for ListTestClocks
impl Unpin for ListTestClocks
impl UnwindSafe for ListTestClocks
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