pub trait HasResourceMetadata {
// 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 HasResourceMetadata for DynamicResource
Implements HasResourceMetadata for DynamicResource providing name and title access
impl HasResourceMetadata for DynamicResource
Implements HasResourceMetadata for DynamicResource providing name and title access