pub struct NestCompilerPlugin {
pub name: String,
pub resolved_path: PathBuf,
pub options: Map<String, Value>,
pub has_before_hook: bool,
pub has_after_hook: bool,
pub has_after_declarations_hook: bool,
pub has_readonly_visitor: bool,
pub path_to_source: Option<PathBuf>,
}Fields§
§name: String§resolved_path: PathBuf§options: Map<String, Value>§has_before_hook: bool§has_after_hook: bool§has_after_declarations_hook: bool§has_readonly_visitor: bool§path_to_source: Option<PathBuf>Trait Implementations§
Source§impl Clone for NestCompilerPlugin
impl Clone for NestCompilerPlugin
Source§fn clone(&self) -> NestCompilerPlugin
fn clone(&self) -> NestCompilerPlugin
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 NestCompilerPlugin
impl Debug for NestCompilerPlugin
Source§impl Default for NestCompilerPlugin
impl Default for NestCompilerPlugin
Source§fn default() -> NestCompilerPlugin
fn default() -> NestCompilerPlugin
Returns the “default value” for a type. Read more
Source§impl PartialEq for NestCompilerPlugin
impl PartialEq for NestCompilerPlugin
Source§fn eq(&self, other: &NestCompilerPlugin) -> bool
fn eq(&self, other: &NestCompilerPlugin) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for NestCompilerPlugin
impl StructuralPartialEq for NestCompilerPlugin
Auto Trait Implementations§
impl Freeze for NestCompilerPlugin
impl RefUnwindSafe for NestCompilerPlugin
impl Send for NestCompilerPlugin
impl Sync for NestCompilerPlugin
impl Unpin for NestCompilerPlugin
impl UnsafeUnpin for NestCompilerPlugin
impl UnwindSafe for NestCompilerPlugin
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.