pub struct SpawnerIdentity {
pub name: String,
pub kind: SpawnerKind,
pub version: Option<String>,
}Expand description
Who spawned this agent.
Fields§
§name: String§kind: SpawnerKind§version: Option<String>Trait Implementations§
Source§impl Clone for SpawnerIdentity
impl Clone for SpawnerIdentity
Source§fn clone(&self) -> SpawnerIdentity
fn clone(&self) -> SpawnerIdentity
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 moreSource§impl Debug for SpawnerIdentity
impl Debug for SpawnerIdentity
Source§impl<'de> Deserialize<'de> for SpawnerIdentity
impl<'de> Deserialize<'de> for SpawnerIdentity
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 SpawnerIdentity
impl RefUnwindSafe for SpawnerIdentity
impl Send for SpawnerIdentity
impl Sync for SpawnerIdentity
impl Unpin for SpawnerIdentity
impl UnsafeUnpin for SpawnerIdentity
impl UnwindSafe for SpawnerIdentity
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