pub enum Digest {
NoInterrupt = 0,
Interrupt = 1,
}Expand description
Indicates if should interrupt when Digest (or Outdata) is ready (completed a hash/crypto or completed a full sequence).
Value on reset: 0
Variants§
NoInterrupt = 0
0: Will not interrupt when Digest is ready
Interrupt = 1
1: Will interrupt when Digest is ready. Interrupt cleared by writing more data, starting a new Hash, or disabling (done).
Trait Implementations§
impl Copy for Digest
impl Eq for Digest
impl StructuralPartialEq for Digest
Auto Trait Implementations§
impl Freeze for Digest
impl RefUnwindSafe for Digest
impl Send for Digest
impl Sync for Digest
impl Unpin for Digest
impl UnwindSafe for Digest
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