pub struct AprsPacket {
pub recv_time: DateTime<Utc>,
pub origin: String,
pub destination: String,
pub protocol: String,
pub payload: Vec<u8>,
}Fields§
§recv_time: DateTime<Utc>§origin: String§destination: String§protocol: String§payload: Vec<u8>Auto Trait Implementations§
impl Freeze for AprsPacket
impl RefUnwindSafe for AprsPacket
impl Send for AprsPacket
impl Sync for AprsPacket
impl Unpin for AprsPacket
impl UnwindSafe for AprsPacket
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