Docs.rs
  • acvp-parser-0.1.0
    • acvp-parser 0.1.0
    • Docs.rs crate page
    • BSD-3-Clause
    • Links
    • Homepage
    • Repository
    • crates.io
    • Source
    • Owners
    • puru1761
    • Dependencies
      • hex ^0.4.3 normal
      • json ^0.12.4 normal
      • libc ^0.2 normal
      • rand ^0.8.4 normal
    • Versions
    • 0% of the crate is documented
  • Go to latest version
  • Platform
    • i686-pc-windows-msvc
    • i686-unknown-linux-gnu
    • x86_64-apple-darwin
    • x86_64-pc-windows-msvc
    • x86_64-unknown-linux-gnu
  • Feature flags
  • docs.rs
    • About docs.rs
    • Badges
    • Builds
    • Metadata
    • Shorthand URLs
    • Download
    • Rustdoc JSON
    • Build queue
    • Privacy policy
  • Rust
    • Rust website
    • The Book
    • Standard Library API Reference
    • Rust by Example
    • The Cargo Guide
    • Clippy Documentation
logo

logo

TestResult

Required Methods

set_result

Implementors

In acvp_parser::parser

logo
Change settings

Trait acvp_parser::parser::TestResult

source · [−]
pub trait TestResult<T> {
    fn set_result(&mut self, res: T) -> AcvpResult<()>;
}

Required methods

source

fn set_result(&mut self, res: T) -> AcvpResult<()>

Implementors

source

impl TestResult<bool> for MsgAuth

source

impl TestResult<MsgAuthOutput> for MsgAuth

source

impl TestResult<Vec<u8, Global>> for BlockCipher

source

impl TestResult<Vec<u8, Global>> for Drbg

source

impl TestResult<Vec<u8, Global>> for SecureHash

source

impl TestResult<Vec<u8, Global>> for MsgAuth

source

impl TestResult<Vec<BlkCipherMCTOutput, Global>> for BlockCipher

source

impl TestResult<Vec<Vec<u8, Global>, Global>> for SecureHash

source

impl<T: TestResult<bool>> TestResult<bool> for AcvpTest<T>

source

impl<T: TestResult<MsgAuthOutput>> TestResult<MsgAuthOutput> for AcvpTest<T>

source

impl<T: TestResult<Vec<u8>>> TestResult<Vec<u8, Global>> for AcvpTest<T>

source

impl<T: TestResult<Vec<BlkCipherMCTOutput>>> TestResult<Vec<BlkCipherMCTOutput, Global>> for AcvpTest<T>

source

impl<T: TestResult<Vec<Vec<u8>>>> TestResult<Vec<Vec<u8, Global>, Global>> for AcvpTest<T>