Type Definition concordium_std::HashSet[][src]

pub type HashSet<K, S = BuildHasherDefault<FnvHasher>> = HashSet<K, S, Global>;
Expand description

Reexport of the HashSet from hashbrown with the default hasher set to the fnv hash function.

Trait Implementations

Deserialization for HashSet given a size_len. Values are not verified to be in any particular order and setting ensure_ordering have no effect.

Attempt to read a structure from a given source and context, failing if an error occurs during deserialization or reading. Read more

Serialization for HashSet given a size_len. Values are not serialized in any particular order.

Attempt to write the structure into the provided writer, failing if if the length cannot be represented in the provided size_length or only part of the structure could be written. Read more