Trait DefaultHashable

Source
pub trait DefaultHashable: Writeable { }
Expand description

Implementing this trait enables the default hash implementation

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl DefaultHashable for u8

Source§

impl DefaultHashable for u64

Source§

impl DefaultHashable for Vec<u8>

Source§

impl DefaultHashable for RangeProof

Implement Hashed trait for external types here

Source§

impl<D: DefaultHashable> DefaultHashable for &D

Source§

impl<D: DefaultHashable, E: DefaultHashable> DefaultHashable for (D, E)

Source§

impl<D: DefaultHashable, E: DefaultHashable, F: DefaultHashable> DefaultHashable for (D, E, F)

Implementors§