pub struct SpawnResult {
pub status: String,
pub run_id: String,
pub session_key: SessionKey,
pub message: String,
}Expand description
Spawn result returned to the agent.
Fields§
§status: String§run_id: String§session_key: SessionKey§message: StringTrait Implementations§
Source§impl Clone for SpawnResult
impl Clone for SpawnResult
Source§fn clone(&self) -> SpawnResult
fn clone(&self) -> SpawnResult
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 SpawnResult
impl Debug for SpawnResult
Source§impl<'de> Deserialize<'de> for SpawnResult
impl<'de> Deserialize<'de> for SpawnResult
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 SpawnResult
impl RefUnwindSafe for SpawnResult
impl Send for SpawnResult
impl Sync for SpawnResult
impl Unpin for SpawnResult
impl UnsafeUnpin for SpawnResult
impl UnwindSafe for SpawnResult
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