#[non_exhaustive]pub enum TruncatedSvdMode {
Some,
None,
}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.
Implementations§
Trait Implementations§
Source§impl Clone for TruncatedSvdMode
impl Clone for TruncatedSvdMode
Source§fn clone(&self) -> TruncatedSvdMode
fn clone(&self) -> TruncatedSvdMode
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 TruncatedSvdMode
Source§impl Debug for TruncatedSvdMode
impl Debug for TruncatedSvdMode
Source§impl Display for TruncatedSvdMode
impl Display for TruncatedSvdMode
impl Eq for TruncatedSvdMode
Source§impl Hash for TruncatedSvdMode
impl Hash for TruncatedSvdMode
Source§impl PartialEq for TruncatedSvdMode
impl PartialEq for TruncatedSvdMode
Source§fn eq(&self, other: &TruncatedSvdMode) -> bool
fn eq(&self, other: &TruncatedSvdMode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TruncatedSvdMode
Auto Trait Implementations§
impl Freeze for TruncatedSvdMode
impl RefUnwindSafe for TruncatedSvdMode
impl Send for TruncatedSvdMode
impl Sync for TruncatedSvdMode
impl Unpin for TruncatedSvdMode
impl UnsafeUnpin for TruncatedSvdMode
impl UnwindSafe for TruncatedSvdMode
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