pub enum ToolParameterKind {
Object(Vec<ToolParameter>),
Array(Box<ToolParameterKind>),
String(Option<Vec<String>>),
Integer,
Number,
Boolean,
}Variants§
Object(Vec<ToolParameter>)
Array(Box<ToolParameterKind>)
String(Option<Vec<String>>)
Integer
Number
Boolean
Implementations§
Trait Implementations§
Source§impl Clone for ToolParameterKind
impl Clone for ToolParameterKind
Source§fn clone(&self) -> ToolParameterKind
fn clone(&self) -> ToolParameterKind
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 moreAuto Trait Implementations§
impl Freeze for ToolParameterKind
impl RefUnwindSafe for ToolParameterKind
impl Send for ToolParameterKind
impl Sync for ToolParameterKind
impl Unpin for ToolParameterKind
impl UnsafeUnpin for ToolParameterKind
impl UnwindSafe for ToolParameterKind
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