pub enum RadioProfileCompatibilityError {
TransmitPowerOutsideRadioRange {
power_dbm: i8,
minimum_dbm: i8,
maximum_dbm: i8,
},
}Variants§
Trait Implementations§
Source§impl Clone for RadioProfileCompatibilityError
impl Clone for RadioProfileCompatibilityError
Source§fn clone(&self) -> RadioProfileCompatibilityError
fn clone(&self) -> RadioProfileCompatibilityError
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 RadioProfileCompatibilityError
impl Eq for RadioProfileCompatibilityError
impl StructuralPartialEq for RadioProfileCompatibilityError
Auto Trait Implementations§
impl Freeze for RadioProfileCompatibilityError
impl RefUnwindSafe for RadioProfileCompatibilityError
impl Send for RadioProfileCompatibilityError
impl Sync for RadioProfileCompatibilityError
impl Unpin for RadioProfileCompatibilityError
impl UnsafeUnpin for RadioProfileCompatibilityError
impl UnwindSafe for RadioProfileCompatibilityError
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