pub struct MessageSource {
pub coupling: Option<Coupling>,
pub module_slot_index: Option<u16>,
pub module_slot_cockpit_index: Option<u8>,
}Expand description
Represents the source of a message.
Fields§
§coupling: Option<Coupling>If the message is coming from another vehicle across couplings, this will be Some.
module_slot_index: Option<u16>If the message is coming from a module, these will be Some.
module_slot_cockpit_index: Option<u8>Implementations§
Trait Implementations§
Source§impl Clone for MessageSource
impl Clone for MessageSource
Source§fn clone(&self) -> MessageSource
fn clone(&self) -> MessageSource
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 MessageSource
impl Debug for MessageSource
Source§impl Default for MessageSource
impl Default for MessageSource
Source§fn default() -> MessageSource
fn default() -> MessageSource
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MessageSource
impl<'de> Deserialize<'de> for MessageSource
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<MessageSource, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<MessageSource, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for MessageSource
impl Hash for MessageSource
Source§impl PartialEq for MessageSource
impl PartialEq for MessageSource
Source§impl Serialize for MessageSource
impl Serialize for MessageSource
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Copy for MessageSource
impl Eq for MessageSource
impl StructuralPartialEq for MessageSource
Auto Trait Implementations§
impl Freeze for MessageSource
impl RefUnwindSafe for MessageSource
impl Send for MessageSource
impl Sync for MessageSource
impl Unpin for MessageSource
impl UnwindSafe for MessageSource
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