Searched defs:PayloadProtect (Results 1 – 6 of 6) sorted by relevance
49 struct PayloadProtect { // reserve for encrypt and decrypt struct50 uint32_t channelId;51 uint32_t commandFlag;52 uint8_t checkSum; // enable it will be lose about 20% speed53 uint8_t vCode;100 struct PayloadProtect { // reserve for encrypt and decrypt struct101 uint32_t channelId;102 uint32_t commandFlag;103 uint8_t checkSum; // enable it will be lose about 20% speed104 uint8_t vCode;
29 pub struct PayloadProtect { struct30 pub channel_id: u32,31 pub command_flag: u32,32 pub check_sum: u8,33 pub v_code: u8,
50 pub fn unpack_payload_protect(data: Vec<u8>) -> io::Result<native_struct::PayloadProtect> { in unpack_payload_protect()
142 impl Serialization for PayloadProtect { implementation
56 struct PayloadProtect { // reserve for encrypt and decrypt struct57 uint32_t channelId;58 uint32_t commandFlag;59 uint8_t checkSum; // enable it will be lose about 20% speed60 uint8_t vCode;
18 export class PayloadProtect extends Object implements BaseBean { class