avro_rs::rabin

Struct Rabin

Source
pub struct Rabin { /* private fields */ }
Expand description

Implementation of the Rabin fingerprint algorithm using the Digest trait as described in schema_fingerprints.

The digest is returned as the 8-byte little-endian encoding of the Rabin hash. This is what is used for avro single object encoding

use avro_rs::rabin::Rabin;
use digest::Digest;
use hex_literal::hex;

// create the Rabin hasher
let mut hasher = Rabin::new();

// add the data
hasher.update(b"hello world");

// read hash digest and consume hasher
let result = hasher.finalize();

assert_eq!(result[..], hex!("60335ba6d0415528"));

To convert the digest to the commonly used 64-bit integer value, you can use the byteorder crate:





use byteorder::{ByteOrder, LittleEndian};

let i = LittleEndian::read_i64(&result.to_vec());

assert_eq!(i, 2906301498937520992)

Trait Implementations§

Source§

impl Clone for Rabin

Source§

fn clone(&self) -> Rabin

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Default for Rabin

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl FixedOutput for Rabin

Source§

type OutputSize = UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>

Output size for fixed output digest
Source§

fn finalize_into(self, out: &mut GenericArray<u8, Self::OutputSize>)

Write result into provided array and consume the hasher instance.
Source§

fn finalize_into_reset(&mut self, out: &mut GenericArray<u8, Self::OutputSize>)

Write result into provided array and reset the hasher instance.
Source§

fn finalize_fixed(self) -> GenericArray<u8, Self::OutputSize>
where Self: Sized,

Retrieve result and consume the hasher instance.
Source§

fn finalize_fixed_reset(&mut self) -> GenericArray<u8, Self::OutputSize>

Retrieve result and reset the hasher instance.
Source§

impl Reset for Rabin

Source§

fn reset(&mut self)

Reset hasher instance to its initial state and return current state.
Source§

impl Update for Rabin

Source§

fn update(&mut self, input: impl AsRef<[u8]>)

Digest input data. Read more
Source§

fn chain(self, data: impl AsRef<[u8]>) -> Self
where Self: Sized,

Digest input data in a chained manner.

Auto Trait Implementations§

§

impl Freeze for Rabin

§

impl RefUnwindSafe for Rabin

§

impl Send for Rabin

§

impl Sync for Rabin

§

impl Unpin for Rabin

§

impl UnwindSafe for Rabin

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<D> Digest for D

Source§

type OutputSize = <D as FixedOutput>::OutputSize

Output size for Digest
Source§

fn new() -> D

Create new hasher instance
Source§

fn update(&mut self, data: impl AsRef<[u8]>)

Digest data, updating the internal state. Read more
Source§

fn chain(self, data: impl AsRef<[u8]>) -> D

Digest input data in a chained manner.
Source§

fn finalize(self) -> GenericArray<u8, <D as Digest>::OutputSize>

Retrieve result and consume hasher instance.
Source§

fn finalize_reset(&mut self) -> GenericArray<u8, <D as Digest>::OutputSize>

Retrieve result and reset hasher instance. Read more
Source§

fn reset(&mut self)

Reset hasher instance to its initial state.
Source§

fn output_size() -> usize

Get output size of the hasher
Source§

fn digest(data: &[u8]) -> GenericArray<u8, <D as Digest>::OutputSize>

Convenience function to compute hash of the data. It will handle hasher creation, data feeding and finalization. Read more
Source§

impl<D> DynDigest for D
where D: Update + FixedOutput + Reset + Clone + 'static,

Source§

fn update(&mut self, data: &[u8])

Digest input data. Read more
Source§

fn finalize_reset(&mut self) -> Box<[u8]>

Retrieve result and reset hasher instance
Source§

fn finalize(self: Box<D>) -> Box<[u8]>

Retrieve result and consume boxed hasher instance
Source§

fn reset(&mut self)

Reset hasher instance to its initial state.
Source§

fn output_size(&self) -> usize

Get output size of the hasher
Source§

fn box_clone(&self) -> Box<dyn DynDigest>

Clone hasher state into a boxed trait object
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V