pub struct PluginHookMatcher {
pub matcher: String,
pub hooks: Vec<String>,
pub plugin_root: String,
pub plugin_name: String,
pub plugin_id: String,
}Expand description
Plugin hook matcher with plugin context.
Fields§
§matcher: String§hooks: Vec<String>§plugin_root: String§plugin_name: String§plugin_id: StringTrait Implementations§
Source§impl Clone for PluginHookMatcher
impl Clone for PluginHookMatcher
Source§fn clone(&self) -> PluginHookMatcher
fn clone(&self) -> PluginHookMatcher
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 PluginHookMatcher
impl RefUnwindSafe for PluginHookMatcher
impl Send for PluginHookMatcher
impl Sync for PluginHookMatcher
impl Unpin for PluginHookMatcher
impl UnsafeUnpin for PluginHookMatcher
impl UnwindSafe for PluginHookMatcher
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