#[non_exhaustive]pub struct A2aError {
pub code: ErrorCode,
pub message: String,
pub data: Option<Value>,
}Expand description
The canonical error type for A2A protocol operations.
Carries an ErrorCode, a human-readable message, and an optional
data payload (arbitrary JSON) for additional diagnostics.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.code: ErrorCodeMachine-readable error code.
message: StringHuman-readable error message.
data: Option<Value>Optional structured error details.
Implementations§
Source§impl A2aError
impl A2aError
Sourcepub fn new(code: ErrorCode, message: impl Into<String>) -> A2aError
pub fn new(code: ErrorCode, message: impl Into<String>) -> A2aError
Creates a new A2aError with the given code and message.
Sourcepub fn with_data(
code: ErrorCode,
message: impl Into<String>,
data: Value,
) -> A2aError
pub fn with_data( code: ErrorCode, message: impl Into<String>, data: Value, ) -> A2aError
Creates a new A2aError with the given code, message, and data.
Sourcepub fn task_not_found(task_id: impl Display) -> A2aError
pub fn task_not_found(task_id: impl Display) -> A2aError
Creates a “Task not found” error for the given task ID string.
Sourcepub fn task_not_cancelable(task_id: impl Display) -> A2aError
pub fn task_not_cancelable(task_id: impl Display) -> A2aError
Creates a “Task not cancelable” error.
Sourcepub fn internal(msg: impl Into<String>) -> A2aError
pub fn internal(msg: impl Into<String>) -> A2aError
Creates an internal error with the provided message.
Sourcepub fn invalid_params(msg: impl Into<String>) -> A2aError
pub fn invalid_params(msg: impl Into<String>) -> A2aError
Creates an “Invalid params” error.
Sourcepub fn unsupported_operation(msg: impl Into<String>) -> A2aError
pub fn unsupported_operation(msg: impl Into<String>) -> A2aError
Creates an “Unsupported operation” error.
Sourcepub fn parse_error(msg: impl Into<String>) -> A2aError
pub fn parse_error(msg: impl Into<String>) -> A2aError
Creates a “Parse error” error.
Sourcepub fn invalid_agent_response(msg: impl Into<String>) -> A2aError
pub fn invalid_agent_response(msg: impl Into<String>) -> A2aError
Creates an “Invalid agent response” error.
Sourcepub fn extended_card_not_configured(msg: impl Into<String>) -> A2aError
pub fn extended_card_not_configured(msg: impl Into<String>) -> A2aError
Creates an “Extended agent card not configured” error.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for A2aError
impl<'de> Deserialize<'de> for A2aError
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<A2aError, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<A2aError, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Source§impl Error for A2aError
impl Error for A2aError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
use the Display impl or to_string()
Source§impl From<A2aError> for ClientError
impl From<A2aError> for ClientError
Source§fn from(e: A2aError) -> ClientError
fn from(e: A2aError) -> ClientError
Source§impl From<A2aError> for ServerError
impl From<A2aError> for ServerError
Source§fn from(e: A2aError) -> ServerError
fn from(e: A2aError) -> ServerError
Source§impl Serialize for A2aError
impl Serialize for A2aError
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,
Auto Trait Implementations§
impl Freeze for A2aError
impl RefUnwindSafe for A2aError
impl Send for A2aError
impl Sync for A2aError
impl Unpin for A2aError
impl UnsafeUnpin for A2aError
impl UnwindSafe for A2aError
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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>
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>
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>
T in a tonic::Request