pub enum DevicePlacementError {
AdapterMustBeEdgeLocal,
}Expand description
Device placement validation error.
Variants§
AdapterMustBeEdgeLocal
The latency-critical adapter is not device or edge local.
Trait Implementations§
Source§impl Clone for DevicePlacementError
impl Clone for DevicePlacementError
Source§fn clone(&self) -> DevicePlacementError
fn clone(&self) -> DevicePlacementError
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 DevicePlacementError
Source§impl Debug for DevicePlacementError
impl Debug for DevicePlacementError
Source§impl Display for DevicePlacementError
impl Display for DevicePlacementError
impl Eq for DevicePlacementError
Source§impl Error for DevicePlacementError
impl Error for DevicePlacementError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl PartialEq for DevicePlacementError
impl PartialEq for DevicePlacementError
impl StructuralPartialEq for DevicePlacementError
Auto Trait Implementations§
impl Freeze for DevicePlacementError
impl RefUnwindSafe for DevicePlacementError
impl Send for DevicePlacementError
impl Sync for DevicePlacementError
impl Unpin for DevicePlacementError
impl UnsafeUnpin for DevicePlacementError
impl UnwindSafe for DevicePlacementError
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