pub struct CompiledIgnoreExportRule {
pub matcher: GlobMatcher,
pub exports: Vec<String>,
}Expand description
IgnoreExportRule with the glob pre-compiled into a matcher.
Fields§
§matcher: GlobMatcherPre-compiled matcher for the rule’s file glob.
exports: Vec<String>Export names to ignore (* for all), copied from the raw rule.
Trait Implementations§
Source§impl Clone for CompiledIgnoreExportRule
impl Clone for CompiledIgnoreExportRule
Auto Trait Implementations§
impl Freeze for CompiledIgnoreExportRule
impl RefUnwindSafe for CompiledIgnoreExportRule
impl Send for CompiledIgnoreExportRule
impl Sync for CompiledIgnoreExportRule
impl Unpin for CompiledIgnoreExportRule
impl UnsafeUnpin for CompiledIgnoreExportRule
impl UnwindSafe for CompiledIgnoreExportRule
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