#[repr(u8)]pub enum ProjectileType {
PulseLaser = 0,
SeekerMissile = 1,
}Expand description
Projectile delivery classification.
Variants§
Trait Implementations§
Source§impl Clone for ProjectileType
impl Clone for ProjectileType
Source§fn clone(&self) -> ProjectileType
fn clone(&self) -> ProjectileType
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 ProjectileType
impl Debug for ProjectileType
Source§impl<'de> Deserialize<'de> for ProjectileType
impl<'de> Deserialize<'de> for ProjectileType
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 ProjectileType
impl PartialEq for ProjectileType
Source§impl Serialize for ProjectileType
impl Serialize for ProjectileType
impl Copy for ProjectileType
impl Eq for ProjectileType
impl StructuralPartialEq for ProjectileType
Auto Trait Implementations§
impl Freeze for ProjectileType
impl RefUnwindSafe for ProjectileType
impl Send for ProjectileType
impl Sync for ProjectileType
impl Unpin for ProjectileType
impl UnsafeUnpin for ProjectileType
impl UnwindSafe for ProjectileType
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