pub struct ListSchedulesOptions {
pub status: Option<String>,
pub kind: Option<String>,
}Expand description
Optional filters for Client::list_schedules.
Fields§
§status: Option<String>Restrict to a single status ("ACTIVE" | "PAUSED" | "CANCELLED").
kind: Option<String>Restrict to a single kind ("scrape" | "screenshot" | "crawler").
Trait Implementations§
Source§impl Clone for ListSchedulesOptions
impl Clone for ListSchedulesOptions
Source§fn clone(&self) -> ListSchedulesOptions
fn clone(&self) -> ListSchedulesOptions
Returns a duplicate of the value. Read more
1.0.0 · 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 ListSchedulesOptions
impl Debug for ListSchedulesOptions
Source§impl Default for ListSchedulesOptions
impl Default for ListSchedulesOptions
Source§fn default() -> ListSchedulesOptions
fn default() -> ListSchedulesOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ListSchedulesOptions
impl RefUnwindSafe for ListSchedulesOptions
impl Send for ListSchedulesOptions
impl Sync for ListSchedulesOptions
impl Unpin for ListSchedulesOptions
impl UnsafeUnpin for ListSchedulesOptions
impl UnwindSafe for ListSchedulesOptions
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