pub struct ActorDescription {
pub actor_id: ActorId,
pub path: ActorPath,
pub actor_type_name: String,
pub actor_context_id: u64,
pub tags: ActorTags,
pub supervised: Option<SupervisedDescription>,
pub time_taken: Option<Duration>,
}Fields§
§actor_id: ActorId§path: ActorPath§actor_type_name: String§actor_context_id: u64§supervised: Option<SupervisedDescription>§time_taken: Option<Duration>Trait Implementations§
Source§impl Debug for ActorDescription
impl Debug for ActorDescription
Source§impl<'de> Deserialize<'de> for ActorDescription
impl<'de> Deserialize<'de> for ActorDescription
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ActorDescription
impl RefUnwindSafe for ActorDescription
impl Send for ActorDescription
impl Sync for ActorDescription
impl Unpin for ActorDescription
impl UnsafeUnpin for ActorDescription
impl UnwindSafe for ActorDescription
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