pub struct SubscriptionMessage {
pub multi_id: u8,
pub msg_id: u16,
pub message_name: String,
pub data: Vec<Vec<ULogValue>>,
pub format: FormatMessage,
}
Fields§
§multi_id: u8
§msg_id: u16
§message_name: String
§data: Vec<Vec<ULogValue>>
§format: FormatMessage
Implementations§
Source§impl SubscriptionMessage
impl SubscriptionMessage
pub fn insert_data(&mut self, data: Vec<ULogValue>)
Trait Implementations§
Source§impl Clone for SubscriptionMessage
impl Clone for SubscriptionMessage
Source§fn clone(&self) -> SubscriptionMessage
fn clone(&self) -> SubscriptionMessage
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 SubscriptionMessage
impl Debug for SubscriptionMessage
Auto Trait Implementations§
impl Freeze for SubscriptionMessage
impl RefUnwindSafe for SubscriptionMessage
impl Send for SubscriptionMessage
impl Sync for SubscriptionMessage
impl Unpin for SubscriptionMessage
impl UnwindSafe for SubscriptionMessage
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