pub struct FSSBodySignalsEvent {
pub body_name: String,
pub body_id: u8,
pub system_address: u64,
pub signals: Vec<FSSBodySignalEventSignal>,
}
Expand description
Fired when the given body has any special signals. Discovering these could be through proximity or through the FSS.
Fields§
§body_name: String
The name of the body the signals are at.
body_id: u8
The id of the body the signals are at.
system_address: u64
The address of the system the body is located in.
signals: Vec<FSSBodySignalEventSignal>
List of signals discovered at the given body.
Trait Implementations§
Source§impl Clone for FSSBodySignalsEvent
impl Clone for FSSBodySignalsEvent
Source§fn clone(&self) -> FSSBodySignalsEvent
fn clone(&self) -> FSSBodySignalsEvent
Returns a copy 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 FSSBodySignalsEvent
impl Debug for FSSBodySignalsEvent
Source§impl<'de> Deserialize<'de> for FSSBodySignalsEvent
impl<'de> Deserialize<'de> for FSSBodySignalsEvent
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 FSSBodySignalsEvent
impl PartialEq for FSSBodySignalsEvent
Source§impl Serialize for FSSBodySignalsEvent
impl Serialize for FSSBodySignalsEvent
impl StructuralPartialEq for FSSBodySignalsEvent
Auto Trait Implementations§
impl Freeze for FSSBodySignalsEvent
impl RefUnwindSafe for FSSBodySignalsEvent
impl Send for FSSBodySignalsEvent
impl Sync for FSSBodySignalsEvent
impl Unpin for FSSBodySignalsEvent
impl UnwindSafe for FSSBodySignalsEvent
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