pub enum StateDomain {
Show 13 variants
Emergency,
Health,
Finance,
Trade,
Conflict,
Politics,
Weather,
Space,
Ocean,
Technology,
Personal,
Infrastructure,
Custom(String),
}Expand description
A domain of world-state activity.
Variants§
Emergency
Health
Finance
Trade
Conflict
Politics
Weather
Space
Ocean
Technology
Personal
Infrastructure
Custom(String)
Trait Implementations§
Source§impl Clone for StateDomain
impl Clone for StateDomain
Source§fn clone(&self) -> StateDomain
fn clone(&self) -> StateDomain
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 StateDomain
impl Debug for StateDomain
Source§impl<'de> Deserialize<'de> for StateDomain
impl<'de> Deserialize<'de> for StateDomain
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 StateDomain
impl Display for StateDomain
Source§impl Hash for StateDomain
impl Hash for StateDomain
Source§impl Ord for StateDomain
impl Ord for StateDomain
Source§fn cmp(&self, other: &StateDomain) -> Ordering
fn cmp(&self, other: &StateDomain) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for StateDomain
impl PartialEq for StateDomain
Source§impl PartialOrd for StateDomain
impl PartialOrd for StateDomain
Source§impl Serialize for StateDomain
impl Serialize for StateDomain
impl Eq for StateDomain
impl StructuralPartialEq for StateDomain
Auto Trait Implementations§
impl Freeze for StateDomain
impl RefUnwindSafe for StateDomain
impl Send for StateDomain
impl Sync for StateDomain
impl Unpin for StateDomain
impl UnsafeUnpin for StateDomain
impl UnwindSafe for StateDomain
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