pub struct DatagramParsed {
pub quarter_stream_id: u64,
pub datagram: Option<Vec<String>>,
pub raw: Option<RawInfo>,
}Fields§
§quarter_stream_id: u64§datagram: Option<Vec<String>>§raw: Option<RawInfo>Trait Implementations§
Source§impl Clone for DatagramParsed
impl Clone for DatagramParsed
Source§fn clone(&self) -> DatagramParsed
fn clone(&self) -> DatagramParsed
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 DatagramParsed
impl Debug for DatagramParsed
Source§impl Default for DatagramParsed
impl Default for DatagramParsed
Source§fn default() -> DatagramParsed
fn default() -> DatagramParsed
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DatagramParsed
impl<'de> Deserialize<'de> for DatagramParsed
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DatagramParsed
impl PartialEq for DatagramParsed
Source§impl Serialize for DatagramParsed
impl Serialize for DatagramParsed
impl Eq for DatagramParsed
impl StructuralPartialEq for DatagramParsed
Auto Trait Implementations§
impl Freeze for DatagramParsed
impl RefUnwindSafe for DatagramParsed
impl Send for DatagramParsed
impl Sync for DatagramParsed
impl Unpin for DatagramParsed
impl UnsafeUnpin for DatagramParsed
impl UnwindSafe for DatagramParsed
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.