[][src]Struct highway::SseHash

pub struct SseHash { /* fields omitted */ }

SSE empowered implementation that will only work on x86_64 with sse 4.1 enabled at the CPU level.

Methods

impl SseHash[src]

pub unsafe fn force_new(key: &Key) -> Self[src]

Creates a new SseHash while circumventing the runtime check for sse4.1. This function is unsafe! If will cause a segfault if sse4.1 is not enabled. Only use this function if you have benchmarked that the runtime check is significant and you know sse4.1 is already enabled.

pub fn new(key: &Key) -> Option<Self>[src]

Create a new SseHash if the sse4.1 feature is detected

Trait Implementations

impl HighwayHash for SseHash[src]

impl Clone for SseHash[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Default for SseHash[src]

impl Debug for SseHash[src]

Auto Trait Implementations

impl Sync for SseHash

impl Send for SseHash

impl Unpin for SseHash

impl RefUnwindSafe for SseHash

impl UnwindSafe for SseHash

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]