pub enum DiscoveryIntake {
NotApplicable(DiscoveryNotApplicable),
Rejected(DiscoveryRejection),
Discovered(Box<DiscoveredInterface>),
}Variants§
NotApplicable(DiscoveryNotApplicable)
Rejected(DiscoveryRejection)
Discovered(Box<DiscoveredInterface>)
Trait Implementations§
Source§impl Debug for DiscoveryIntake
impl Debug for DiscoveryIntake
Source§impl PartialEq for DiscoveryIntake
impl PartialEq for DiscoveryIntake
impl StructuralPartialEq for DiscoveryIntake
Auto Trait Implementations§
impl Freeze for DiscoveryIntake
impl RefUnwindSafe for DiscoveryIntake
impl Send for DiscoveryIntake
impl Sync for DiscoveryIntake
impl Unpin for DiscoveryIntake
impl UnsafeUnpin for DiscoveryIntake
impl UnwindSafe for DiscoveryIntake
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