pub struct MultiNestCompilerPlugins {
pub before_hooks: Vec<NestCompilerPlugin>,
pub after_hooks: Vec<NestCompilerPlugin>,
pub after_declarations_hooks: Vec<NestCompilerPlugin>,
pub readonly_visitors: Vec<NestCompilerPlugin>,
pub unresolved_plugins: Vec<String>,
}Fields§
§before_hooks: Vec<NestCompilerPlugin>§after_hooks: Vec<NestCompilerPlugin>§after_declarations_hooks: Vec<NestCompilerPlugin>§readonly_visitors: Vec<NestCompilerPlugin>§unresolved_plugins: Vec<String>Implementations§
Source§impl MultiNestCompilerPlugins
impl MultiNestCompilerPlugins
pub fn is_any_plugin_registered(&self) -> bool
Trait Implementations§
Source§impl Clone for MultiNestCompilerPlugins
impl Clone for MultiNestCompilerPlugins
Source§fn clone(&self) -> MultiNestCompilerPlugins
fn clone(&self) -> MultiNestCompilerPlugins
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 moreSource§impl Debug for MultiNestCompilerPlugins
impl Debug for MultiNestCompilerPlugins
Source§impl Default for MultiNestCompilerPlugins
impl Default for MultiNestCompilerPlugins
Source§fn default() -> MultiNestCompilerPlugins
fn default() -> MultiNestCompilerPlugins
Returns the “default value” for a type. Read more
Source§impl PartialEq for MultiNestCompilerPlugins
impl PartialEq for MultiNestCompilerPlugins
Source§fn eq(&self, other: &MultiNestCompilerPlugins) -> bool
fn eq(&self, other: &MultiNestCompilerPlugins) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for MultiNestCompilerPlugins
impl StructuralPartialEq for MultiNestCompilerPlugins
Auto Trait Implementations§
impl Freeze for MultiNestCompilerPlugins
impl RefUnwindSafe for MultiNestCompilerPlugins
impl Send for MultiNestCompilerPlugins
impl Sync for MultiNestCompilerPlugins
impl Unpin for MultiNestCompilerPlugins
impl UnsafeUnpin for MultiNestCompilerPlugins
impl UnwindSafe for MultiNestCompilerPlugins
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.