pub struct ToolSummary {
pub id: String,
pub name: String,
pub description: String,
pub domain: String,
pub tags: Vec<String>,
pub visibility: ToolVisibility,
pub tier: ToolTier,
pub input_schema: Option<Value>,
}Fields§
§id: String§name: String§description: String§domain: String§visibility: ToolVisibility§tier: ToolTier§input_schema: Option<Value>Trait Implementations§
Source§impl Clone for ToolSummary
impl Clone for ToolSummary
Source§fn clone(&self) -> ToolSummary
fn clone(&self) -> ToolSummary
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 ToolSummary
impl Debug for ToolSummary
Source§impl<'de> Deserialize<'de> for ToolSummary
impl<'de> Deserialize<'de> for ToolSummary
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&ToolDefinition> for ToolSummary
impl From<&ToolDefinition> for ToolSummary
Source§fn from(def: &ToolDefinition) -> Self
fn from(def: &ToolDefinition) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ToolSummary
impl RefUnwindSafe for ToolSummary
impl Send for ToolSummary
impl Sync for ToolSummary
impl Unpin for ToolSummary
impl UnsafeUnpin for ToolSummary
impl UnwindSafe for ToolSummary
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