pub enum Replay {
NonReplayable,
Replayable,
}Expand description
Whether a signature can be validly reused.
Variants§
NonReplayable
Includes a nonce; verifiers enforce uniqueness.
Replayable
May be reused within the validity window.
Trait Implementations§
impl Copy for Replay
impl Eq for Replay
impl StructuralPartialEq for Replay
Auto Trait Implementations§
impl Freeze for Replay
impl RefUnwindSafe for Replay
impl Send for Replay
impl Sync for Replay
impl Unpin for Replay
impl UnsafeUnpin for Replay
impl UnwindSafe for Replay
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