Struct cbsk::data::analysis_data::AnalysisData
source · pub struct AnalysisData {
pub data_frame: Vec<u8>,
pub too_short_frame: Vec<u8>,
pub too_long_byte: Option<u8>,
pub next_verify_frame: Vec<u8>,
}
Expand description
analysis result data
Fields§
§data_frame: Vec<u8>
analysis success frame
too_short_frame: Vec<u8>
analysis data too short frame
too_long_byte: Option<u8>
the length of the data description exceeds the limit length
next_verify_frame: Vec<u8>
data that needs to be verified next time
Implementations§
Auto Trait Implementations§
impl Freeze for AnalysisData
impl RefUnwindSafe for AnalysisData
impl Send for AnalysisData
impl Sync for AnalysisData
impl Unpin for AnalysisData
impl UnwindSafe for AnalysisData
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