pub enum DeviceReportStatus {
Available {
is_default: bool,
caps: Capabilities,
},
Rejected(String),
}Variants§
Available
This device is available, with its capabilities.
Rejected(String)
This device was rejected for the given reason.
Trait Implementations§
Source§impl Clone for DeviceReportStatus
impl Clone for DeviceReportStatus
Source§fn clone(&self) -> DeviceReportStatus
fn clone(&self) -> DeviceReportStatus
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for DeviceReportStatus
impl RefUnwindSafe for DeviceReportStatus
impl Send for DeviceReportStatus
impl Sync for DeviceReportStatus
impl Unpin for DeviceReportStatus
impl UnsafeUnpin for DeviceReportStatus
impl UnwindSafe for DeviceReportStatus
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