pub enum ActorState {
Listening,
Finalizing,
}Expand description
Tracks the state of the actor
Variants§
Trait Implementations§
Source§impl Clone for ActorState
impl Clone for ActorState
Source§fn clone(&self) -> ActorState
fn clone(&self) -> ActorState
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 ActorState
impl Debug for ActorState
Source§impl Hash for ActorState
impl Hash for ActorState
Source§impl PartialEq for ActorState
impl PartialEq for ActorState
impl Copy for ActorState
impl Eq for ActorState
impl StructuralPartialEq for ActorState
Auto Trait Implementations§
impl Freeze for ActorState
impl RefUnwindSafe for ActorState
impl Send for ActorState
impl Sync for ActorState
impl Unpin for ActorState
impl UnwindSafe for ActorState
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> SpawnHelper for T
impl<T> SpawnHelper for T
Source§fn spawn<F>(
&self,
future: F,
) -> SpawnHandle<<F as Future>::Item, <F as Future>::Error>
fn spawn<F>( &self, future: F, ) -> SpawnHandle<<F as Future>::Item, <F as Future>::Error>
Spawns a future to run on this
Spawn, returning a future representing
the produced value. Read moreSource§fn spawn_fn<F, R>(
&self,
f: F,
) -> SpawnHandle<<R as IntoFuture>::Item, <R as IntoFuture>::Error>
fn spawn_fn<F, R>( &self, f: F, ) -> SpawnHandle<<R as IntoFuture>::Item, <R as IntoFuture>::Error>
Spawns a closure on this
Spawn Read more