pub struct ActorEntry {
pub handle: UnboundedSender<ToActor>,
pub active_http_request_count: Arc<AsyncCounter>,
pub name: String,
pub event_history: Vec<EventWrapper>,
pub last_command_idx: i64,
pub received_stop: bool,
}Fields§
§handle: UnboundedSender<ToActor>§active_http_request_count: Arc<AsyncCounter>§name: String§event_history: Vec<EventWrapper>§last_command_idx: i64§received_stop: boolAuto Trait Implementations§
impl !RefUnwindSafe for ActorEntry
impl !UnwindSafe for ActorEntry
impl Freeze for ActorEntry
impl Send for ActorEntry
impl Sync for ActorEntry
impl Unpin for ActorEntry
impl UnsafeUnpin for ActorEntry
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