pub struct DebugFilter {
pub include: Vec<String>,
pub exclude: Vec<String>,
pub is_exclusive: bool,
}Expand description
Debug filter configuration
Fields§
§include: Vec<String>§exclude: Vec<String>§is_exclusive: boolTrait Implementations§
Source§impl Clone for DebugFilter
impl Clone for DebugFilter
Source§fn clone(&self) -> DebugFilter
fn clone(&self) -> DebugFilter
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 DebugFilter
impl RefUnwindSafe for DebugFilter
impl Send for DebugFilter
impl Sync for DebugFilter
impl Unpin for DebugFilter
impl UnsafeUnpin for DebugFilter
impl UnwindSafe for DebugFilter
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