#[non_exhaustive]#[repr(u32)]pub enum SwoMode {
Uart = 0,
}Expand description
The supported SWO data encoding modes.
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.
Uart = 0
Trait Implementations§
impl Copy for SwoMode
impl Eq for SwoMode
impl StructuralPartialEq for SwoMode
Auto Trait Implementations§
impl Freeze for SwoMode
impl RefUnwindSafe for SwoMode
impl Send for SwoMode
impl Sync for SwoMode
impl Unpin for SwoMode
impl UnwindSafe for SwoMode
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