pub trait Xxh3Reset {
    fn reset(self, state: *mut XXH3_state_t);
}
Expand description

Describes method to reset XXH3 algorithm state.

Policies:

  • Default - requires nothing and just resets using default values.
  • Seed - updates with u64 seed.
  • Secret - updates with specified slice of bytes. It should be no less than xxhash_c_sys::XXH3_SECRET_SIZE_MIN

Required Methods

Reset implementation

Implementations on Foreign Types

Implementors