pub struct MID0008rev1 {
pub subscription_mid: u16,
pub wanted_revision: u16,
pub extra_data_length: u16,
pub extra_data: Vec<u8>,
}Expand description
§5.2.7 MID 0008 Application data message subscription
Start a subscription of data. This message is used for ALL subscription handling. When used it substitutes the use of all MID special subscription messages.
Fields§
§subscription_mid: u16The MID ID to be subscribed for. Can be used for ALL subscription handling.
wanted_revision: u16The revision of the MID to subscribe for.
extra_data_length: u16The length of the extra data field.
extra_data: Vec<u8>The extra data field (variable length).
Trait Implementations§
Source§impl Debug for MID0008rev1
impl Debug for MID0008rev1
Source§impl Decode for MID0008rev1
impl Decode for MID0008rev1
Source§impl Default for MID0008rev1
impl Default for MID0008rev1
Source§fn default() -> MID0008rev1
fn default() -> MID0008rev1
Returns the “default value” for a type. Read more
Source§impl Encode for MID0008rev1
impl Encode for MID0008rev1
Source§impl Message for MID0008rev1
impl Message for MID0008rev1
fn mid() -> u16
fn to_mid(&self) -> u16
fn revision() -> u16
fn to_revision(&self) -> u16
fn message_type() -> MessageType
fn to_message_type(&self) -> MessageType
Source§impl PartialEq for MID0008rev1
impl PartialEq for MID0008rev1
impl Eq for MID0008rev1
impl StructuralPartialEq for MID0008rev1
Auto Trait Implementations§
impl Freeze for MID0008rev1
impl RefUnwindSafe for MID0008rev1
impl Send for MID0008rev1
impl Sync for MID0008rev1
impl Unpin for MID0008rev1
impl UnwindSafe for MID0008rev1
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