pub enum ToolRegistryError {
DuplicateTool(String),
}Expand description
Errors that can occur with tool registry
Variants§
Trait Implementations§
Source§impl Clone for ToolRegistryError
impl Clone for ToolRegistryError
Source§fn clone(&self) -> ToolRegistryError
fn clone(&self) -> ToolRegistryError
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 ToolRegistryError
impl Debug for ToolRegistryError
Source§impl Display for ToolRegistryError
impl Display for ToolRegistryError
Source§impl Error for ToolRegistryError
impl Error for ToolRegistryError
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<ToolRegistryError> for RsllmError
impl From<ToolRegistryError> for RsllmError
Source§fn from(err: ToolRegistryError) -> Self
fn from(err: ToolRegistryError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ToolRegistryError
impl RefUnwindSafe for ToolRegistryError
impl Send for ToolRegistryError
impl Sync for ToolRegistryError
impl Unpin for ToolRegistryError
impl UnwindSafe for ToolRegistryError
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