pub enum DetectionReason {
EventReceived,
Timeout,
SubscriptionFailed,
}Expand description
Reason for detection completion.
Variants§
EventReceived
First event arrived within timeout
Timeout
No events received within timeout
SubscriptionFailed
Subscription creation failed
Trait Implementations§
Source§impl Clone for DetectionReason
impl Clone for DetectionReason
Source§fn clone(&self) -> DetectionReason
fn clone(&self) -> DetectionReason
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 DetectionReason
impl Debug for DetectionReason
Source§impl PartialEq for DetectionReason
impl PartialEq for DetectionReason
impl Copy for DetectionReason
impl Eq for DetectionReason
impl StructuralPartialEq for DetectionReason
Auto Trait Implementations§
impl Freeze for DetectionReason
impl RefUnwindSafe for DetectionReason
impl Send for DetectionReason
impl Sync for DetectionReason
impl Unpin for DetectionReason
impl UnsafeUnpin for DetectionReason
impl UnwindSafe for DetectionReason
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.