pub struct PortValueCombinedFormat {
pub port_id: u8,
pub data: Vec<u8>,
}Expand description
The PortValueCombinedFormat is some horrific set of pointers to values we should already have cached elsewhere. For now we save the raw data and leave parsing it for later.
Fields§
§port_id: u8§data: Vec<u8>Implementations§
Trait Implementations§
Source§impl Clone for PortValueCombinedFormat
impl Clone for PortValueCombinedFormat
Source§fn clone(&self) -> PortValueCombinedFormat
fn clone(&self) -> PortValueCombinedFormat
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 PortValueCombinedFormat
impl Debug for PortValueCombinedFormat
impl Eq for PortValueCombinedFormat
Source§impl PartialEq for PortValueCombinedFormat
impl PartialEq for PortValueCombinedFormat
impl StructuralPartialEq for PortValueCombinedFormat
Auto Trait Implementations§
impl Freeze for PortValueCombinedFormat
impl RefUnwindSafe for PortValueCombinedFormat
impl Send for PortValueCombinedFormat
impl Sync for PortValueCombinedFormat
impl Unpin for PortValueCombinedFormat
impl UnsafeUnpin for PortValueCombinedFormat
impl UnwindSafe for PortValueCombinedFormat
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