pub struct PAck<'a> {
pub session_id: u64,
pub hmac: &'a [u8],
pub packet_id: u32,
pub net_time: u32,
pub msg_ar_len: u8,
pub msg_ar: Option<Vec<u32>>,
pub remote_session_id: Option<u64>,
}
Expand description
Payload for P_ACK messages
Fields§
§session_id: u64
§hmac: &'a [u8]
16 or 20 bytes
packet_id: u32
replay protection, 4 or 8 bytes (see net_time
)
net_time: u32
Optional part of replay protection
msg_ar_len: u8
§msg_ar: Option<Vec<u32>>
§remote_session_id: Option<u64>
Trait Implementations§
impl<'a> StructuralPartialEq for PAck<'a>
Auto Trait Implementations§
impl<'a> Freeze for PAck<'a>
impl<'a> RefUnwindSafe for PAck<'a>
impl<'a> Send for PAck<'a>
impl<'a> Sync for PAck<'a>
impl<'a> Unpin for PAck<'a>
impl<'a> UnwindSafe for PAck<'a>
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