pub enum ThargoidWarState {
Stronghold,
Probing,
Controlled,
Recovery,
Harvest,
UnknownState,
Unspecified,
Unknown(String),
}
Variants§
Stronghold
Probing
Controlled
Recovery
Harvest
UnknownState
Unspecified
Unknown(String)
Available on crate feature
allow-unknown
only.Trait Implementations§
Source§impl Clone for ThargoidWarState
impl Clone for ThargoidWarState
Source§fn clone(&self) -> ThargoidWarState
fn clone(&self) -> ThargoidWarState
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 ThargoidWarState
impl Debug for ThargoidWarState
Source§impl<'de> Deserialize<'de> for ThargoidWarState
impl<'de> Deserialize<'de> for ThargoidWarState
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 Display for ThargoidWarState
impl Display for ThargoidWarState
Source§impl PartialEq for ThargoidWarState
impl PartialEq for ThargoidWarState
Source§impl Serialize for ThargoidWarState
impl Serialize for ThargoidWarState
impl StructuralPartialEq for ThargoidWarState
Auto Trait Implementations§
impl Freeze for ThargoidWarState
impl RefUnwindSafe for ThargoidWarState
impl Send for ThargoidWarState
impl Sync for ThargoidWarState
impl Unpin for ThargoidWarState
impl UnwindSafe for ThargoidWarState
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