pub struct ListContainersQuery {
pub limit: Option<u32>,
pub order: Option<String>,
pub after: Option<String>,
}Expand description
Query parameters for listing containers.
Fields§
§limit: Option<u32>A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 20.
order: Option<String>Sort order by the created_at timestamp of the objects. asc for ascending order and desc for descending order.
after: Option<String>A cursor for use in pagination. after is an object ID that defines your place in the list.
Trait Implementations§
Source§impl Clone for ListContainersQuery
impl Clone for ListContainersQuery
Source§fn clone(&self) -> ListContainersQuery
fn clone(&self) -> ListContainersQuery
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 ListContainersQuery
impl Debug for ListContainersQuery
Source§impl Default for ListContainersQuery
impl Default for ListContainersQuery
Source§fn default() -> ListContainersQuery
fn default() -> ListContainersQuery
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListContainersQuery
impl PartialEq for ListContainersQuery
Source§impl Serialize for ListContainersQuery
impl Serialize for ListContainersQuery
impl StructuralPartialEq for ListContainersQuery
Auto Trait Implementations§
impl Freeze for ListContainersQuery
impl RefUnwindSafe for ListContainersQuery
impl Send for ListContainersQuery
impl Sync for ListContainersQuery
impl Unpin for ListContainersQuery
impl UnwindSafe for ListContainersQuery
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