Struct multihash::IdentityHasher [−][src]
pub struct IdentityHasher<S: Size> { /* fields omitted */ }
Expand description
Trait Implementations
impl<S: Debug + Size> Debug for IdentityHasher<S>[src]
impl<S: Debug + Size> Debug for IdentityHasher<S>[src]impl<S: Default + Size> Default for IdentityHasher<S>[src]
impl<S: Default + Size> Default for IdentityHasher<S>[src]fn default() -> IdentityHasher<S>ⓘNotable traits for IdentityHasher<S>
impl<S: Size> Write for IdentityHasher<S>[src]
fn default() -> IdentityHasher<S>ⓘNotable traits for IdentityHasher<S>
impl<S: Size> Write for IdentityHasher<S>[src]Returns the “default value” for a type. Read more
impl<S: Size> StatefulHasher for IdentityHasher<S>[src]
impl<S: Size> StatefulHasher for IdentityHasher<S>[src]type Size = S
type Size = SThe maximum Digest size for that hasher (it is stack allocated).
type Digest = IdentityDigest<Self::Size>
type Digest = IdentityDigest<Self::Size>The Digest type to distinguish the output of different Hasher implementations.
impl<S: Size> Write for IdentityHasher<S>[src]
impl<S: Size> Write for IdentityHasher<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 IdentityHasher<S> where
<S as ArrayLength<u8>>::ArrayType: RefUnwindSafe,
<S as ArrayLength<u8>>::ArrayType: RefUnwindSafe,
impl<S> Send for IdentityHasher<S>
impl<S> Sync for IdentityHasher<S>
impl<S> Unpin for IdentityHasher<S> where
<S as ArrayLength<u8>>::ArrayType: Unpin,
<S as ArrayLength<u8>>::ArrayType: Unpin,
impl<S> UnwindSafe for IdentityHasher<S> where
<S as ArrayLength<u8>>::ArrayType: UnwindSafe,
<S as ArrayLength<u8>>::ArrayType: 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