pub enum EfuseError {
OutOfRange,
}Expand description
eFuse access error.
Variants§
OutOfRange
Byte address is outside the eFuse array (>= EFUSE_MAX_BYTES).
Trait Implementations§
Source§impl Clone for EfuseError
impl Clone for EfuseError
Source§fn clone(&self) -> EfuseError
fn clone(&self) -> EfuseError
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 EfuseError
Source§impl Debug for EfuseError
impl Debug for EfuseError
impl Eq for EfuseError
Source§impl PartialEq for EfuseError
impl PartialEq for EfuseError
Source§fn eq(&self, other: &EfuseError) -> bool
fn eq(&self, other: &EfuseError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for EfuseError
Auto Trait Implementations§
impl Freeze for EfuseError
impl RefUnwindSafe for EfuseError
impl Send for EfuseError
impl Sync for EfuseError
impl Unpin for EfuseError
impl UnsafeUnpin for EfuseError
impl UnwindSafe for EfuseError
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