pub enum ModuleKind {
Core,
Platform,
Extension,
Integration,
}Expand description
What kind of module this is.
Variants§
Core
Core infrastructure — must always be present.
Platform
Platform service — orchestration layer.
Extension
Pluggable extension — optional, can be added/removed.
Integration
External integration — registered via HTTP bridge.
Trait Implementations§
Source§impl Clone for ModuleKind
impl Clone for ModuleKind
Source§fn clone(&self) -> ModuleKind
fn clone(&self) -> ModuleKind
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 ModuleKind
impl Debug for ModuleKind
Source§impl<'de> Deserialize<'de> for ModuleKind
impl<'de> Deserialize<'de> for ModuleKind
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ModuleKind
impl RefUnwindSafe for ModuleKind
impl Send for ModuleKind
impl Sync for ModuleKind
impl Unpin for ModuleKind
impl UnsafeUnpin for ModuleKind
impl UnwindSafe for ModuleKind
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