pub struct LocatorHandlerOptions {
pub no_wait_after: bool,
pub times: Option<u32>,
}Expand description
Options for locator handlers.
Fields§
§no_wait_after: boolWhether to skip waiting after the handler runs.
times: Option<u32>Maximum number of times the handler can run. None means unlimited.
Trait Implementations§
Source§impl Clone for LocatorHandlerOptions
impl Clone for LocatorHandlerOptions
Source§fn clone(&self) -> LocatorHandlerOptions
fn clone(&self) -> LocatorHandlerOptions
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 LocatorHandlerOptions
impl Debug for LocatorHandlerOptions
Source§impl Default for LocatorHandlerOptions
impl Default for LocatorHandlerOptions
Source§fn default() -> LocatorHandlerOptions
fn default() -> LocatorHandlerOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for LocatorHandlerOptions
impl RefUnwindSafe for LocatorHandlerOptions
impl Send for LocatorHandlerOptions
impl Sync for LocatorHandlerOptions
impl Unpin for LocatorHandlerOptions
impl UnwindSafe for LocatorHandlerOptions
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