pub enum BringUpError {
DetectTimedOut,
MissingInterfaceInventory,
MissingFirmwareVersion,
FirmwareTooOld {
reported: FirmwareVersion,
required: FirmwareVersion,
},
MissingVPort {
vport: VPort,
reported_radio_count: usize,
},
UnsupportedFrequency {
vport: VPort,
radio_type: RadioType,
frequency: RadioFrequency,
},
RadioMismatch {
vport: VPort,
},
}Variants§
DetectTimedOut
MissingInterfaceInventory
MissingFirmwareVersion
FirmwareTooOld
MissingVPort
UnsupportedFrequency
RadioMismatch
Trait Implementations§
Source§impl Clone for BringUpError
impl Clone for BringUpError
Source§fn clone(&self) -> BringUpError
fn clone(&self) -> BringUpError
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 BringUpError
Source§impl Debug for BringUpError
impl Debug for BringUpError
impl Eq for BringUpError
Source§impl PartialEq for BringUpError
impl PartialEq for BringUpError
impl StructuralPartialEq for BringUpError
Auto Trait Implementations§
impl Freeze for BringUpError
impl RefUnwindSafe for BringUpError
impl Send for BringUpError
impl Sync for BringUpError
impl Unpin for BringUpError
impl UnsafeUnpin for BringUpError
impl UnwindSafe for BringUpError
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