pub trait HasBaseMetadata {
// Required method
fn name(&self) -> &str;
// Provided method
fn title(&self) -> Option<&str> { ... }
}Expand description
Base metadata trait - matches TypeScript BaseMetadata interface
Required Methods§
Provided Methods§
Implementations on Foreign Types§
Source§impl HasBaseMetadata for DynamicTool
Implements HasBaseMetadata for DynamicTool providing name and title access
impl HasBaseMetadata for DynamicTool
Implements HasBaseMetadata for DynamicTool providing name and title access