pub struct HeartbeatResponse {
pub request_id: u64,
pub responder_name: String,
pub timestamp_ms: u64,
pub component_alive: bool,
pub ms_since_last_activity: u64,
pub container_state_val: usize,
}Expand description
Parsed form of a HeartbeatResponse, forwarded by the container to the sender task.
Fields§
§request_id: u64§responder_name: String§timestamp_ms: u64§component_alive: bool§ms_since_last_activity: u64§container_state_val: usizeTrait Implementations§
Source§impl Clone for HeartbeatResponse
impl Clone for HeartbeatResponse
Source§fn clone(&self) -> HeartbeatResponse
fn clone(&self) -> HeartbeatResponse
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 moreAuto Trait Implementations§
impl Freeze for HeartbeatResponse
impl RefUnwindSafe for HeartbeatResponse
impl Send for HeartbeatResponse
impl Sync for HeartbeatResponse
impl Unpin for HeartbeatResponse
impl UnsafeUnpin for HeartbeatResponse
impl UnwindSafe for HeartbeatResponse
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