pub enum CargoEventVessel {
Ship,
SRV,
}
Expand description
The type of vessel the player is currently piloting.
Variants§
Ship
The player has collected the cargo using their ship.
SRV
The player has collected the cargo using their SRV.
Implementations§
Trait Implementations§
Source§impl Clone for CargoEventVessel
impl Clone for CargoEventVessel
Source§fn clone(&self) -> CargoEventVessel
fn clone(&self) -> CargoEventVessel
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 CargoEventVessel
impl Debug for CargoEventVessel
Source§impl<'de> Deserialize<'de> for CargoEventVessel
impl<'de> Deserialize<'de> for CargoEventVessel
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 CargoEventVessel
impl PartialEq for CargoEventVessel
Source§impl Serialize for CargoEventVessel
impl Serialize for CargoEventVessel
impl StructuralPartialEq for CargoEventVessel
Auto Trait Implementations§
impl Freeze for CargoEventVessel
impl RefUnwindSafe for CargoEventVessel
impl Send for CargoEventVessel
impl Sync for CargoEventVessel
impl Unpin for CargoEventVessel
impl UnwindSafe for CargoEventVessel
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