pub struct SchemaToolUsageRow {
pub tool_name: String,
pub description: String,
pub calls: i64,
pub errors: i64,
pub last_called_at: Option<i64>,
}Expand description
A tool listed in the schema with its usage stats.
Fields§
§tool_name: String§description: String§calls: i64§errors: i64§last_called_at: Option<i64>Trait Implementations§
Source§impl Clone for SchemaToolUsageRow
impl Clone for SchemaToolUsageRow
Source§fn clone(&self) -> SchemaToolUsageRow
fn clone(&self) -> SchemaToolUsageRow
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 SchemaToolUsageRow
impl Debug for SchemaToolUsageRow
Auto Trait Implementations§
impl Freeze for SchemaToolUsageRow
impl RefUnwindSafe for SchemaToolUsageRow
impl Send for SchemaToolUsageRow
impl Sync for SchemaToolUsageRow
impl Unpin for SchemaToolUsageRow
impl UnsafeUnpin for SchemaToolUsageRow
impl UnwindSafe for SchemaToolUsageRow
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