pub struct PluginManager { /* private fields */ }Expand description
插件管理器
Implementations§
Source§impl PluginManager
impl PluginManager
Sourcepub fn load_plugin<P>(&mut self, plugin: P) -> Result<()>where
P: Plugin + 'static,
pub fn load_plugin<P>(&mut self, plugin: P) -> Result<()>where
P: Plugin + 'static,
加载插件
Sourcepub fn unload_plugin(&mut self, name: &str) -> Result<()>
pub fn unload_plugin(&mut self, name: &str) -> Result<()>
卸载插件
Sourcepub fn get_plugin(&self, name: &str) -> Option<&dyn Plugin>
pub fn get_plugin(&self, name: &str) -> Option<&dyn Plugin>
获取插件
Sourcepub fn list_plugins(&self) -> Vec<PluginInfo>
pub fn list_plugins(&self) -> Vec<PluginInfo>
列出所有插件
Sourcepub fn load_plugins_from_directory<P: AsRef<Path>>(
&mut self,
dir: P,
) -> Result<Vec<String>>
pub fn load_plugins_from_directory<P: AsRef<Path>>( &mut self, dir: P, ) -> Result<Vec<String>>
从目录加载插件
Sourcepub fn reload_all(&mut self) -> Result<()>
pub fn reload_all(&mut self) -> Result<()>
重新加载所有插件
Sourcepub fn get_all_generators(&self) -> Vec<&dyn CustomGenerator>
pub fn get_all_generators(&self) -> Vec<&dyn CustomGenerator>
获取所有生成器
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PluginManager
impl !RefUnwindSafe for PluginManager
impl Send for PluginManager
impl Sync for PluginManager
impl Unpin for PluginManager
impl !UnwindSafe for PluginManager
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more