pub enum ScanEventKind {
Star(ScanEventStar),
Planet(ScanEventPlanet),
BeltCluster(ScanEventBeltCluster),
}
Variants§
Trait Implementations§
Source§impl Clone for ScanEventKind
impl Clone for ScanEventKind
Source§fn clone(&self) -> ScanEventKind
fn clone(&self) -> ScanEventKind
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 ScanEventKind
impl Debug for ScanEventKind
Source§impl<'de> Deserialize<'de> for ScanEventKind
impl<'de> Deserialize<'de> for ScanEventKind
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 ScanEventKind
impl PartialEq for ScanEventKind
Source§impl Serialize for ScanEventKind
impl Serialize for ScanEventKind
impl StructuralPartialEq for ScanEventKind
Auto Trait Implementations§
impl Freeze for ScanEventKind
impl RefUnwindSafe for ScanEventKind
impl Send for ScanEventKind
impl Sync for ScanEventKind
impl Unpin for ScanEventKind
impl UnwindSafe for ScanEventKind
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