pub struct ActorHealthReport {
pub actor_id: String,
pub actor_name: String,
pub state: ActorState,
pub last_heartbeat_secs_ago: u64,
pub is_stale: bool,
}Expand description
Health status of a single actor at a given point in time.
Fields§
§actor_id: String§actor_name: String§state: ActorState§last_heartbeat_secs_ago: u64§is_stale: boolTrait Implementations§
Source§impl Clone for ActorHealthReport
impl Clone for ActorHealthReport
Source§fn clone(&self) -> ActorHealthReport
fn clone(&self) -> ActorHealthReport
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 moreAuto Trait Implementations§
impl Freeze for ActorHealthReport
impl RefUnwindSafe for ActorHealthReport
impl Send for ActorHealthReport
impl Sync for ActorHealthReport
impl Unpin for ActorHealthReport
impl UnwindSafe for ActorHealthReport
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