pub enum GetEvalRunOutputItemsParamsOrder {
Asc,
Desc,
}
Expand description
Sort order for output items by timestamp. Use asc
for ascending order or desc
for descending order. Defaults to asc
.
Variants§
Trait Implementations§
Source§impl Clone for GetEvalRunOutputItemsParamsOrder
impl Clone for GetEvalRunOutputItemsParamsOrder
Source§fn clone(&self) -> GetEvalRunOutputItemsParamsOrder
fn clone(&self) -> GetEvalRunOutputItemsParamsOrder
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 GetEvalRunOutputItemsParamsOrder
impl Default for GetEvalRunOutputItemsParamsOrder
Source§fn default() -> GetEvalRunOutputItemsParamsOrder
fn default() -> GetEvalRunOutputItemsParamsOrder
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetEvalRunOutputItemsParamsOrder
impl<'de> Deserialize<'de> for GetEvalRunOutputItemsParamsOrder
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 GetEvalRunOutputItemsParamsOrder
impl PartialEq for GetEvalRunOutputItemsParamsOrder
Source§fn eq(&self, other: &GetEvalRunOutputItemsParamsOrder) -> bool
fn eq(&self, other: &GetEvalRunOutputItemsParamsOrder) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for GetEvalRunOutputItemsParamsOrder
impl StructuralPartialEq for GetEvalRunOutputItemsParamsOrder
Auto Trait Implementations§
impl Freeze for GetEvalRunOutputItemsParamsOrder
impl RefUnwindSafe for GetEvalRunOutputItemsParamsOrder
impl Send for GetEvalRunOutputItemsParamsOrder
impl Sync for GetEvalRunOutputItemsParamsOrder
impl Unpin for GetEvalRunOutputItemsParamsOrder
impl UnwindSafe for GetEvalRunOutputItemsParamsOrder
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