pub struct SecuredDataTrans {
pub apar: AdministrativeParameter,
pub signature: SignatureEncryptionCalculation,
pub anti_replay_cnt: u16,
pub service: u8,
pub service_data: Vec<u8>,
pub signature_data: Vec<u8>,
}Fields§
§apar: AdministrativeParameter§signature: SignatureEncryptionCalculation§anti_replay_cnt: u16§service: u8§service_data: Vec<u8>§signature_data: Vec<u8>Implementations§
Trait Implementations§
Source§impl Clone for SecuredDataTrans
impl Clone for SecuredDataTrans
Source§fn clone(&self) -> SecuredDataTrans
fn clone(&self) -> SecuredDataTrans
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 SecuredDataTrans
impl Debug for SecuredDataTrans
Source§impl RequestData for SecuredDataTrans
impl RequestData for SecuredDataTrans
Auto Trait Implementations§
impl Freeze for SecuredDataTrans
impl RefUnwindSafe for SecuredDataTrans
impl Send for SecuredDataTrans
impl Sync for SecuredDataTrans
impl Unpin for SecuredDataTrans
impl UnwindSafe for SecuredDataTrans
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