#[non_exhaustive]pub enum EventDomain {
Route,
Interface,
Neighbor,
Address,
All,
}Expand description
A domain whose state must be re-read after an overflow notification.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Clone for EventDomain
impl Clone for EventDomain
Source§fn clone(&self) -> EventDomain
fn clone(&self) -> EventDomain
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 moreimpl Copy for EventDomain
Source§impl Debug for EventDomain
impl Debug for EventDomain
impl Eq for EventDomain
Source§impl Hash for EventDomain
impl Hash for EventDomain
Source§impl PartialEq for EventDomain
impl PartialEq for EventDomain
impl StructuralPartialEq for EventDomain
Auto Trait Implementations§
impl Freeze for EventDomain
impl RefUnwindSafe for EventDomain
impl Send for EventDomain
impl Sync for EventDomain
impl Unpin for EventDomain
impl UnsafeUnpin for EventDomain
impl UnwindSafe for EventDomain
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