Trait digest_writer::FixedOutput [] [src]

pub trait FixedOutput {
    type OutputSize: ArrayLength<u8>;
    fn fixed_result(self) -> GenericArray<u8, Self::OutputSize>;
}

Trait for returning digest result with the fixed size

Associated Types

Required Methods

Retrieve the digest result. This method consumes digest instance.

Implementors