pub struct ExperimentListParams {
pub status: Option<String>,
pub from: Option<String>,
pub to: Option<String>,
pub limit: Option<u32>,
pub cursor: Option<String>,
}Expand description
Filters for crate::resources::Experiments::list.
Fields§
§status: Option<String>Restrict to one lifecycle state.
from: Option<String>Inclusive lower bound (RFC3339).
to: Option<String>Inclusive upper bound (RFC3339).
limit: Option<u32>Page size.
cursor: Option<String>Opaque pagination cursor.
Trait Implementations§
Source§impl Clone for ExperimentListParams
impl Clone for ExperimentListParams
Source§fn clone(&self) -> ExperimentListParams
fn clone(&self) -> ExperimentListParams
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 ExperimentListParams
impl Debug for ExperimentListParams
Source§impl Default for ExperimentListParams
impl Default for ExperimentListParams
Source§fn default() -> ExperimentListParams
fn default() -> ExperimentListParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ExperimentListParams
impl RefUnwindSafe for ExperimentListParams
impl Send for ExperimentListParams
impl Sync for ExperimentListParams
impl Unpin for ExperimentListParams
impl UnsafeUnpin for ExperimentListParams
impl UnwindSafe for ExperimentListParams
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