pub struct Packet {
pub random_token: u16,
pub data: Data,
}
Fields§
§random_token: u16
§data: Data
Implementations§
Source§impl Packet
impl Packet
pub fn into_ack_for_gateway(self, gateway_mac: MacAddress) -> Packet
pub fn into_nack_with_error_for_gateway( self, error: Error, gateway_mac: MacAddress, ) -> Packet
pub fn into_nack_with_error(self, e: Error) -> Packet
pub fn into_ack(self) -> Packet
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Packet
impl RefUnwindSafe for Packet
impl Send for Packet
impl Sync for Packet
impl Unpin for Packet
impl UnwindSafe for Packet
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