pub struct A2ATaskResult {
pub output: String,
}Expand description
Result of a completed A2A task.
Fields§
§output: StringOutput text from the task.
Implementations§
Trait Implementations§
Source§impl Clone for A2ATaskResult
impl Clone for A2ATaskResult
Source§fn clone(&self) -> A2ATaskResult
fn clone(&self) -> A2ATaskResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 A2ATaskResult
impl Debug for A2ATaskResult
Source§impl<'de> Deserialize<'de> for A2ATaskResult
impl<'de> Deserialize<'de> for A2ATaskResult
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 A2ATaskResult
impl RefUnwindSafe for A2ATaskResult
impl Send for A2ATaskResult
impl Sync for A2ATaskResult
impl Unpin for A2ATaskResult
impl UnsafeUnpin for A2ATaskResult
impl UnwindSafe for A2ATaskResult
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