Trait assembly_fdb::FdbHash

source ·
pub trait FdbHash {
    // Required method
    fn hash(&self) -> u32;
}
Expand description

This trait is implemented on all types that represent a field value

Required Methods§

source

fn hash(&self) -> u32

Get the hash value

Implementations on Foreign Types§

source§

impl FdbHash for bool

source§

fn hash(&self) -> u32

source§

impl FdbHash for f32

source§

fn hash(&self) -> u32

source§

impl FdbHash for i32

source§

fn hash(&self) -> u32

source§

impl FdbHash for i64

source§

fn hash(&self) -> u32

source§

impl FdbHash for str

source§

fn hash(&self) -> u32

source§

impl FdbHash for u32

source§

fn hash(&self) -> u32

source§

impl FdbHash for u64

source§

fn hash(&self) -> u32

source§

impl FdbHash for String

source§

fn hash(&self) -> u32

source§

impl FdbHash for Latin1Str

source§

fn hash(&self) -> u32

source§

impl FdbHash for Latin1String

source§

fn hash(&self) -> u32

Implementors§

source§

impl<C> FdbHash for Value<C>
where C: Context, <C as Context>::I64: FdbHash, <C as Context>::String: FdbHash, <C as Context>::XML: FdbHash,