Skip to main content

Reset

Trait Reset 

Source
pub trait Reset {
    // Required method
    fn reset(&mut self);
}
Expand description

Resettable types.

Required Methods§

Source

fn reset(&mut self)

Reset state to its initial value.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl Reset for Sha1Core

Source§

fn reset(&mut self)

Source§

impl<D> Reset for HmacCore<D>

Available on crate feature reset only.
Source§

fn reset(&mut self)

Source§

impl<D> Reset for SimpleHmac<D>
where D: Digest + BlockSizeUser + Reset,

Available on crate feature reset only.
Source§

fn reset(&mut self)

Implementors§