pub enum ListContainersParamsOrder {
Asc,
Desc,
}
Expand description
Sort order by the created_at
timestamp of the objects. asc
for ascending order and desc
for descending order.
Variants§
Trait Implementations§
Source§impl Clone for ListContainersParamsOrder
impl Clone for ListContainersParamsOrder
Source§fn clone(&self) -> ListContainersParamsOrder
fn clone(&self) -> ListContainersParamsOrder
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ListContainersParamsOrder
impl Debug for ListContainersParamsOrder
Source§impl Default for ListContainersParamsOrder
impl Default for ListContainersParamsOrder
Source§fn default() -> ListContainersParamsOrder
fn default() -> ListContainersParamsOrder
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListContainersParamsOrder
impl<'de> Deserialize<'de> for ListContainersParamsOrder
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 ListContainersParamsOrder
impl PartialEq for ListContainersParamsOrder
Source§fn eq(&self, other: &ListContainersParamsOrder) -> bool
fn eq(&self, other: &ListContainersParamsOrder) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for ListContainersParamsOrder
impl StructuralPartialEq for ListContainersParamsOrder
Auto Trait Implementations§
impl Freeze for ListContainersParamsOrder
impl RefUnwindSafe for ListContainersParamsOrder
impl Send for ListContainersParamsOrder
impl Sync for ListContainersParamsOrder
impl Unpin for ListContainersParamsOrder
impl UnwindSafe for ListContainersParamsOrder
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