pub struct ListTriggersOpts {
pub symbol: Option<String>,
pub status: Vec<String>,
pub limit: u32,
pub page_token: Option<String>,
pub subaccount_id: Option<u64>,
}Expand description
Typed list-triggers options.
Fields§
§symbol: Option<String>§status: Vec<String>Status filter labels (created, armed, …). Unknown values are rejected.
limit: u32§page_token: Option<String>§subaccount_id: Option<u64>Trait Implementations§
Source§impl Clone for ListTriggersOpts
impl Clone for ListTriggersOpts
Source§fn clone(&self) -> ListTriggersOpts
fn clone(&self) -> ListTriggersOpts
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 ListTriggersOpts
impl Debug for ListTriggersOpts
Source§impl Default for ListTriggersOpts
impl Default for ListTriggersOpts
Source§fn default() -> ListTriggersOpts
fn default() -> ListTriggersOpts
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ListTriggersOpts
impl RefUnwindSafe for ListTriggersOpts
impl Send for ListTriggersOpts
impl Sync for ListTriggersOpts
impl Unpin for ListTriggersOpts
impl UnsafeUnpin for ListTriggersOpts
impl UnwindSafe for ListTriggersOpts
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