#[non_exhaustive]pub enum StreamResponse {
Task(Task),
Message(Message),
StatusUpdate(TaskStatusUpdateEvent),
ArtifactUpdate(TaskArtifactUpdateEvent),
}Expand description
A single event payload in an A2A streaming response.
Externally tagged: serialized as a single-key object ({"task": …},
{"statusUpdate": …}, …) whose camelCase key names the variant. This
matches the ProtoJSON encoding of the StreamResponse.payload oneof on
the wire — it is not an untagged union, and must not be “corrected” to
one without breaking wire compatibility.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Task(Task)
A complete task object (initial response before streaming begins).
Message(Message)
A complete message (returned synchronously for short responses).
StatusUpdate(TaskStatusUpdateEvent)
A task state change event.
ArtifactUpdate(TaskArtifactUpdateEvent)
An artifact delivery event.
Trait Implementations§
Source§impl Clone for StreamResponse
impl Clone for StreamResponse
Source§fn clone(&self) -> StreamResponse
fn clone(&self) -> StreamResponse
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 StreamResponse
impl Debug for StreamResponse
Source§impl<'de> Deserialize<'de> for StreamResponse
impl<'de> Deserialize<'de> for StreamResponse
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<StreamResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<StreamResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for StreamResponse
impl Serialize for StreamResponse
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Source§impl TryFrom<StreamResponse> for StreamResponse
impl TryFrom<StreamResponse> for StreamResponse
Source§type Error = ConvertError
type Error = ConvertError
The type returned in the event of a conversion error.
Source§fn try_from(
value: StreamResponse,
) -> Result<StreamResponse, <StreamResponse as TryFrom<StreamResponse>>::Error>
fn try_from( value: StreamResponse, ) -> Result<StreamResponse, <StreamResponse as TryFrom<StreamResponse>>::Error>
Performs the conversion.
Source§impl TryFrom<StreamResponse> for StreamResponse
impl TryFrom<StreamResponse> for StreamResponse
Source§type Error = ConvertError
type Error = ConvertError
The type returned in the event of a conversion error.
Source§fn try_from(
value: StreamResponse,
) -> Result<StreamResponse, <StreamResponse as TryFrom<StreamResponse>>::Error>
fn try_from( value: StreamResponse, ) -> Result<StreamResponse, <StreamResponse as TryFrom<StreamResponse>>::Error>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for StreamResponse
impl RefUnwindSafe for StreamResponse
impl Send for StreamResponse
impl Sync for StreamResponse
impl Unpin for StreamResponse
impl UnsafeUnpin for StreamResponse
impl UnwindSafe for StreamResponse
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> FutureExt for T
impl<T> FutureExt for T
Source§fn with_context(self, otel_cx: Context) -> WithContext<Self> ⓘ
fn with_context(self, otel_cx: Context) -> WithContext<Self> ⓘ
Source§fn with_current_context(self) -> WithContext<Self> ⓘ
fn with_current_context(self) -> WithContext<Self> ⓘ
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request