Struct cbsk::data::verify_data::VerifyData
source · pub struct VerifyData {
pub error_frame: Vec<u8>,
pub data_frame: Vec<u8>,
pub too_short_frame: Vec<u8>,
pub next_verify_frame: Vec<u8>,
}
Expand description
verify result data
Fields§
§error_frame: Vec<u8>
verify fail frame
data_frame: Vec<u8>
verify success frame
too_short_frame: Vec<u8>
verify first frame success, but the remaining bytes are too short
the bytes with insufficient length are stored here
next_verify_frame: Vec<u8>
loop verification failed, data that needs to be verified next time
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for VerifyData
impl RefUnwindSafe for VerifyData
impl Send for VerifyData
impl Sync for VerifyData
impl Unpin for VerifyData
impl UnwindSafe for VerifyData
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