pub enum SimulatorState {
Booted,
Shutdown,
Booting,
ShuttingDown,
Creating,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for SimulatorState
impl Clone for SimulatorState
Source§fn clone(&self) -> SimulatorState
fn clone(&self) -> SimulatorState
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for SimulatorState
Source§impl Debug for SimulatorState
impl Debug for SimulatorState
Source§impl<'de> Deserialize<'de> for SimulatorState
impl<'de> Deserialize<'de> for SimulatorState
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
impl Eq for SimulatorState
Source§impl Hash for SimulatorState
impl Hash for SimulatorState
Source§impl PartialEq for SimulatorState
impl PartialEq for SimulatorState
Source§impl Serialize for SimulatorState
impl Serialize for SimulatorState
impl StructuralPartialEq for SimulatorState
Auto Trait Implementations§
impl Freeze for SimulatorState
impl RefUnwindSafe for SimulatorState
impl Send for SimulatorState
impl Sync for SimulatorState
impl Unpin for SimulatorState
impl UnsafeUnpin for SimulatorState
impl UnwindSafe for SimulatorState
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