pub struct ParsedDatagram {
pub header: RtpsHeader,
pub submessages: Vec<ParsedSubmessage>,
}Expand description
Geparstes Datagram: Header + alle erkannten Submessages.
Fields§
§header: RtpsHeaderRTPS-Header.
submessages: Vec<ParsedSubmessage>Alle erkannten Submessages in Reihenfolge.
Trait Implementations§
Source§impl Clone for ParsedDatagram
impl Clone for ParsedDatagram
Source§fn clone(&self) -> ParsedDatagram
fn clone(&self) -> ParsedDatagram
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ParsedDatagram
impl Debug for ParsedDatagram
Source§impl PartialEq for ParsedDatagram
impl PartialEq for ParsedDatagram
Source§fn eq(&self, other: &ParsedDatagram) -> bool
fn eq(&self, other: &ParsedDatagram) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ParsedDatagram
impl StructuralPartialEq for ParsedDatagram
Auto Trait Implementations§
impl Freeze for ParsedDatagram
impl RefUnwindSafe for ParsedDatagram
impl Send for ParsedDatagram
impl Sync for ParsedDatagram
impl Unpin for ParsedDatagram
impl UnsafeUnpin for ParsedDatagram
impl UnwindSafe for ParsedDatagram
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