pub struct RunListParams {
pub after: Option<String>,
pub limit: Option<i64>,
pub order: Option<RunListParamsOrder>,
pub status: Option<RunListParamsStatus>,
}Fields§
§after: Option<String>Identifier for the last run from the previous pagination request.
limit: Option<i64>Number of runs to retrieve.
order: Option<RunListParamsOrder>Sort order for runs by timestamp.
status: Option<RunListParamsStatus>Filter runs by status.
Trait Implementations§
Source§impl Clone for RunListParams
impl Clone for RunListParams
Source§fn clone(&self) -> RunListParams
fn clone(&self) -> RunListParams
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RunListParams
impl Debug for RunListParams
Source§impl<'de> Deserialize<'de> for RunListParams
impl<'de> Deserialize<'de> for RunListParams
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
Auto Trait Implementations§
impl Freeze for RunListParams
impl RefUnwindSafe for RunListParams
impl Send for RunListParams
impl Sync for RunListParams
impl Unpin for RunListParams
impl UnsafeUnpin for RunListParams
impl UnwindSafe for RunListParams
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