Struct multihash::Blake3Hasher [−][src]
pub struct Blake3Hasher<S: Size> { /* fields omitted */ }
Expand description
Multihash hasher.
Trait Implementations
impl<S: Debug + Size> Debug for Blake3Hasher<S>[src]
impl<S: Debug + Size> Debug for Blake3Hasher<S>[src]impl<S: Size> Default for Blake3Hasher<S>[src]
impl<S: Size> Default for Blake3Hasher<S>[src]impl<S: Size> StatefulHasher for Blake3Hasher<S>[src]
impl<S: Size> StatefulHasher for Blake3Hasher<S>[src]type Size = S
type Size = SThe maximum Digest size for that hasher (it is stack allocated).
type Digest = Blake3Digest<Self::Size>
type Digest = Blake3Digest<Self::Size>The Digest type to distinguish the output of different Hasher implementations.
impl<S: Size> Write for Blake3Hasher<S>[src]
impl<S: Size> Write for Blake3Hasher<S>[src]fn write(&mut self, buf: &[u8]) -> Result<usize>[src]
fn write(&mut self, buf: &[u8]) -> Result<usize>[src]Write a buffer into this writer, returning how many bytes were written. Read more
fn flush(&mut self) -> Result<()>[src]
fn flush(&mut self) -> Result<()>[src]Flush this output stream, ensuring that all intermediately buffered contents reach their destination. Read more
fn is_write_vectored(&self) -> bool[src]
fn is_write_vectored(&self) -> bool[src]🔬 This is a nightly-only experimental API. (
can_vector)Determines if this Writer has an efficient write_vectored
implementation. Read more
fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>1.0.0[src]
fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>1.0.0[src]Attempts to write an entire buffer into this writer. Read more
fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>[src]
fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>[src]🔬 This is a nightly-only experimental API. (
write_all_vectored)Attempts to write multiple buffers into this writer. Read more
Auto Trait Implementations
impl<S> RefUnwindSafe for Blake3Hasher<S> where
S: RefUnwindSafe,
S: RefUnwindSafe,
impl<S> Send for Blake3Hasher<S>
impl<S> Sync for Blake3Hasher<S>
impl<S> Unpin for Blake3Hasher<S> where
S: Unpin,
S: Unpin,
impl<S> UnwindSafe for Blake3Hasher<S> where
S: UnwindSafe,
S: UnwindSafe,
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<T> Same<T> for T
impl<T> Same<T> for Ttype Output = T
type Output = TShould always be Self