pub struct SecureHash {
pub msg: Vec<u8>,
/* private fields */
}Fields§
§msg: Vec<u8>Trait Implementations§
Source§impl Clone for SecureHash
impl Clone for SecureHash
Source§fn clone(&self) -> SecureHash
fn clone(&self) -> SecureHash
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SecureHash
impl Debug for SecureHash
Source§impl PartialEq for SecureHash
impl PartialEq for SecureHash
Source§impl TestCase for SecureHash
impl TestCase for SecureHash
fn new(testjson: &str, tgdata: &TestGroupData) -> AcvpResult<Self>
fn get_result(&self) -> AcvpResult<JsonValue>
fn dump_result(&self) -> AcvpResult<String>
fn pretty_result(&self) -> AcvpResult<String>
Source§impl TestResult<Vec<Vec<u8>>> for SecureHash
impl TestResult<Vec<Vec<u8>>> for SecureHash
fn set_result(&mut self, res: Vec<Vec<u8>>) -> AcvpResult<()>
Source§impl TestResult<Vec<u8>> for SecureHash
impl TestResult<Vec<u8>> for SecureHash
fn set_result(&mut self, res: Vec<u8>) -> AcvpResult<()>
impl Eq for SecureHash
impl StructuralPartialEq for SecureHash
Auto Trait Implementations§
impl Freeze for SecureHash
impl RefUnwindSafe for SecureHash
impl Send for SecureHash
impl Sync for SecureHash
impl Unpin for SecureHash
impl UnwindSafe for SecureHash
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more