The trivial, serial implementation of Join. The left and right sides are
executed one after the other, on the calling thread. The standalone hashing
functions and the Hasher::update method use this implementation
internally.
See the join module docs for more details.
fn join<A, B, RA, RB>(
oper_a: A,
oper_b: B,
_len_a: usize,
_len_b: usize
) -> (RA, RB) where
A: FnOnce() -> RA + Send,
B: FnOnce() -> RB + Send,
RA: Send,
RB: Send, [src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
impl<T, U> Into<U> for T where
U: From<T>, [src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
The type returned in the event of a conversion error.
The type returned in the event of a conversion error.