pub enum ListContainerFilesParamsOrder {
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 ListContainerFilesParamsOrder
impl Clone for ListContainerFilesParamsOrder
Source§fn clone(&self) -> ListContainerFilesParamsOrder
fn clone(&self) -> ListContainerFilesParamsOrder
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 Default for ListContainerFilesParamsOrder
impl Default for ListContainerFilesParamsOrder
Source§fn default() -> ListContainerFilesParamsOrder
fn default() -> ListContainerFilesParamsOrder
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListContainerFilesParamsOrder
impl<'de> Deserialize<'de> for ListContainerFilesParamsOrder
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 ListContainerFilesParamsOrder
impl PartialEq for ListContainerFilesParamsOrder
Source§fn eq(&self, other: &ListContainerFilesParamsOrder) -> bool
fn eq(&self, other: &ListContainerFilesParamsOrder) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for ListContainerFilesParamsOrder
impl StructuralPartialEq for ListContainerFilesParamsOrder
Auto Trait Implementations§
impl Freeze for ListContainerFilesParamsOrder
impl RefUnwindSafe for ListContainerFilesParamsOrder
impl Send for ListContainerFilesParamsOrder
impl Sync for ListContainerFilesParamsOrder
impl Unpin for ListContainerFilesParamsOrder
impl UnwindSafe for ListContainerFilesParamsOrder
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