pub enum ProcessingDelay {
Shortest = 0,
Longest = 1,
}
Expand description
Processing Delay
For a given SHA algorithm, the runtime period has two possible lengths
Variants§
Shortest = 0
Shortest processing delay
SHA1
: 85
SHA224
: 72
SHA256
: 72
Longest = 1
Longest processing delay
SHA1
: 209
SHA224
: 194
SHA256
: 194
Auto Trait Implementations§
impl Freeze for ProcessingDelay
impl RefUnwindSafe for ProcessingDelay
impl Send for ProcessingDelay
impl Sync for ProcessingDelay
impl Unpin for ProcessingDelay
impl UnwindSafe for ProcessingDelay
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