pub struct DockingRequestedEventLandingPads {
pub small: u8,
pub medium: u8,
pub large: u8,
}
Expand description
The number of available landing pads at the given station.
Fields§
§small: u8
The total number of small landing pads at the given station.
medium: u8
The total number of medium landing pads at the given station.
large: u8
The total number of large landing pads at the given station.
Trait Implementations§
Source§impl Clone for DockingRequestedEventLandingPads
impl Clone for DockingRequestedEventLandingPads
Source§fn clone(&self) -> DockingRequestedEventLandingPads
fn clone(&self) -> DockingRequestedEventLandingPads
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<'de> Deserialize<'de> for DockingRequestedEventLandingPads
impl<'de> Deserialize<'de> for DockingRequestedEventLandingPads
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 DockingRequestedEventLandingPads
impl PartialEq for DockingRequestedEventLandingPads
Source§fn eq(&self, other: &DockingRequestedEventLandingPads) -> bool
fn eq(&self, other: &DockingRequestedEventLandingPads) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DockingRequestedEventLandingPads
Auto Trait Implementations§
impl Freeze for DockingRequestedEventLandingPads
impl RefUnwindSafe for DockingRequestedEventLandingPads
impl Send for DockingRequestedEventLandingPads
impl Sync for DockingRequestedEventLandingPads
impl Unpin for DockingRequestedEventLandingPads
impl UnwindSafe for DockingRequestedEventLandingPads
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