pub struct ActorInfo {
pub name: String,
pub generation: u32,
pub active_http_request_count: Arc<AsyncCounter>,
}Expand description
Information about an actor, returned by EnvoyHandle::get_actor.
Fields§
§name: String§generation: u32§active_http_request_count: Arc<AsyncCounter>Trait Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for ActorInfo
impl !UnwindSafe for ActorInfo
impl Freeze for ActorInfo
impl Send for ActorInfo
impl Sync for ActorInfo
impl Unpin for ActorInfo
impl UnsafeUnpin for ActorInfo
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