pub enum RegisterError {
DuplicateName(Cow<'static, str>),
EmptyDescription(Cow<'static, str>),
}Expand description
Why a tool could not be added to a Tools registry.
Variants§
DuplicateName(Cow<'static, str>)
A tool with this name is already registered.
Names address tools in a model’s tool-call, so they must be unique.
EmptyDescription(Cow<'static, str>)
The tool’s description is empty.
A description is what a model uses to decide whether to call a tool, so an empty one makes the tool unusable rather than merely undocumented.
Trait Implementations§
Source§impl Clone for RegisterError
impl Clone for RegisterError
Source§fn clone(&self) -> RegisterError
fn clone(&self) -> RegisterError
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 RegisterError
impl Debug for RegisterError
Source§impl Display for RegisterError
impl Display for RegisterError
impl Eq for RegisterError
Source§impl Error for RegisterError
impl Error for RegisterError
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 PartialEq for RegisterError
impl PartialEq for RegisterError
impl StructuralPartialEq for RegisterError
Auto Trait Implementations§
impl Freeze for RegisterError
impl RefUnwindSafe for RegisterError
impl Send for RegisterError
impl Sync for RegisterError
impl Unpin for RegisterError
impl UnsafeUnpin for RegisterError
impl UnwindSafe for RegisterError
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