pub struct BuiltinMetadata {
pub id: String,
pub display_name: String,
pub version: String,
pub author: String,
pub description: String,
pub category: String,
pub tags: Vec<String>,
}Expand description
Lightweight builtin metadata (without loading WASM)
For UI display and filtering before full plugin load.
Fields§
§id: String§display_name: String§version: String§description: String§category: StringTrait Implementations§
Source§impl Clone for BuiltinMetadata
impl Clone for BuiltinMetadata
Source§fn clone(&self) -> BuiltinMetadata
fn clone(&self) -> BuiltinMetadata
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 moreAuto Trait Implementations§
impl Freeze for BuiltinMetadata
impl RefUnwindSafe for BuiltinMetadata
impl Send for BuiltinMetadata
impl Sync for BuiltinMetadata
impl Unpin for BuiltinMetadata
impl UnwindSafe for BuiltinMetadata
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