pub enum DeviceSuitability {
Perfect,
NotPreferred,
Unsuitable,
}Expand description
Suitability of a physical device.
Variants§
Perfect
If all requirements meet this criteria, the physical device gets picked and the search is concluded.
NotPreferred
If any requirement meets this criteria, the physical device gets considered but the search for a potentially perfect physical device continues.
Unsuitable
If any requirement meets this criteria, the physical device will under no circumstances be considered.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DeviceSuitability
impl RefUnwindSafe for DeviceSuitability
impl Send for DeviceSuitability
impl Sync for DeviceSuitability
impl Unpin for DeviceSuitability
impl UnwindSafe for DeviceSuitability
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