#[non_exhaustive]pub enum HardwareType {
JLink,
JTrace,
Flasher,
JLinkPro,
}Expand description
The hardware/product type of the device.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Clone for HardwareType
impl Clone for HardwareType
Source§fn clone(&self) -> HardwareType
fn clone(&self) -> HardwareType
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 moreSource§impl Debug for HardwareType
impl Debug for HardwareType
Source§impl Display for HardwareType
impl Display for HardwareType
Source§impl PartialEq for HardwareType
impl PartialEq for HardwareType
impl Copy for HardwareType
impl Eq for HardwareType
impl StructuralPartialEq for HardwareType
Auto Trait Implementations§
impl Freeze for HardwareType
impl RefUnwindSafe for HardwareType
impl Send for HardwareType
impl Sync for HardwareType
impl Unpin for HardwareType
impl UnwindSafe for HardwareType
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