pub trait EndianIndependentWrites { }
Expand description

Marker trait for hashers whose write methods write data in the same order regardless of the endianness of the host. Be aware that a type may write endian dependent data to the hasher in other ways, so this isn’t a guarantee.

The HasherLe and HasherBe types can be used to create hashers that implement this trait.

Implementors§