pub struct PluginManager { /* private fields */ }Expand description
The main plugin manager
Implementations§
Source§impl PluginManager
impl PluginManager
Sourcepub fn load_plugin(&mut self, path: &Path) -> Result<String, PluginError>
pub fn load_plugin(&mut self, path: &Path) -> Result<String, PluginError>
Load a plugin from a WASM file
Sourcepub fn load_plugins_from_dir(&mut self, dir: &Path) -> Result<Vec<String>>
pub fn load_plugins_from_dir(&mut self, dir: &Path) -> Result<Vec<String>>
Load all plugins from a directory
Sourcepub fn analyze(
&mut self,
source: &str,
language: Language,
) -> Result<Vec<Finding>>
pub fn analyze( &mut self, source: &str, language: Language, ) -> Result<Vec<Finding>>
Run all applicable plugins on the given source
Sourcepub fn list_plugins(&self) -> Vec<&PluginMetadata>
pub fn list_plugins(&self) -> Vec<&PluginMetadata>
List all loaded plugins
Sourcepub fn unload_plugin(&mut self, name: &str) -> Result<(), PluginError>
pub fn unload_plugin(&mut self, name: &str) -> Result<(), PluginError>
Unload a plugin by name
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