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§

source§

impl AnalysisData

custom method

source

pub fn success(data_frame: Vec<u8>, next_verify_frame: Vec<u8>) -> Self

just analysis success

source

pub fn too_short(too_short_frame: Vec<u8>) -> Self

just too short
if data too short, will be add header data

source

pub fn too_long(too_long_byte: u8, next_verify_frame: Vec<u8>) -> Self

just too long

source

pub fn next_verify(next_verify_frame: Vec<u8>) -> Self

just next verify

source

pub fn new( data_frame: Vec<u8>, too_short_frame: Vec<u8>, too_long_byte: Option<u8>, next_verify_frame: Vec<u8>, ) -> Self

new analysis data
if too short frame is not empty, will be add header data

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.