pub enum CarrierDockingAccess {
All,
Squadron,
SquadronAndFriends,
None,
}
Expand description
Docking access for a fleet carrier. This, along with the ‘allow notorious’ option, determines who can and who cannot dock at the given fleet carrier.
Variants§
All
All commanders can dock.
Squadron
Commanders that are part of the same squadron that the owner is part of can dock.
SquadronAndFriends
Commanders that are friends with the owner and commanders that are part of the same squadron as the owner are allowed to dock.
None
No-one other than the owner of the fleer carrier can dock.
Trait Implementations§
Source§impl Clone for CarrierDockingAccess
impl Clone for CarrierDockingAccess
Source§fn clone(&self) -> CarrierDockingAccess
fn clone(&self) -> CarrierDockingAccess
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 CarrierDockingAccess
impl Debug for CarrierDockingAccess
Source§impl<'de> Deserialize<'de> for CarrierDockingAccess
impl<'de> Deserialize<'de> for CarrierDockingAccess
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 CarrierDockingAccess
impl PartialEq for CarrierDockingAccess
Source§impl Serialize for CarrierDockingAccess
impl Serialize for CarrierDockingAccess
impl StructuralPartialEq for CarrierDockingAccess
Auto Trait Implementations§
impl Freeze for CarrierDockingAccess
impl RefUnwindSafe for CarrierDockingAccess
impl Send for CarrierDockingAccess
impl Sync for CarrierDockingAccess
impl Unpin for CarrierDockingAccess
impl UnwindSafe for CarrierDockingAccess
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