pub struct ModuleMetadata {
pub type_id: String,
pub name: String,
pub category: String,
pub description: String,
pub port_spec: PortSpec,
pub keywords: Vec<String>,
pub tags: Vec<String>,
}Available on crate feature
alloc only.Expand description
Metadata about a registered module type
Fields§
§type_id: String§name: String§category: String§description: String§port_spec: PortSpec§keywords: Vec<String>Keywords for search functionality
Tags for filtering (e.g., “essential”, “advanced”)
Trait Implementations§
Source§impl Clone for ModuleMetadata
impl Clone for ModuleMetadata
Source§fn clone(&self) -> ModuleMetadata
fn clone(&self) -> ModuleMetadata
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 moreAuto Trait Implementations§
impl Freeze for ModuleMetadata
impl RefUnwindSafe for ModuleMetadata
impl Send for ModuleMetadata
impl Sync for ModuleMetadata
impl Unpin for ModuleMetadata
impl UnsafeUnpin for ModuleMetadata
impl UnwindSafe for ModuleMetadata
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