pub enum AgentExecutorError {
Failed(String),
}Expand description
Executor failure.
Variants§
Trait Implementations§
Source§impl Debug for AgentExecutorError
impl Debug for AgentExecutorError
Source§impl Display for AgentExecutorError
impl Display for AgentExecutorError
Source§impl Error for AgentExecutorError
impl Error for AgentExecutorError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl From<AgentExecutorError> for AgentError
impl From<AgentExecutorError> for AgentError
Source§fn from(source: AgentExecutorError) -> Self
fn from(source: AgentExecutorError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AgentExecutorError
impl RefUnwindSafe for AgentExecutorError
impl Send for AgentExecutorError
impl Sync for AgentExecutorError
impl Unpin for AgentExecutorError
impl UnsafeUnpin for AgentExecutorError
impl UnwindSafe for AgentExecutorError
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