pub struct IgnoreMatch {
pub source: Vec<u8>,
pub line_number: usize,
pub pattern: Vec<u8>,
pub ignored: bool,
}Fields§
§source: Vec<u8>§line_number: usize§pattern: Vec<u8>§ignored: boolTrait Implementations§
Source§impl Clone for IgnoreMatch
impl Clone for IgnoreMatch
Source§fn clone(&self) -> IgnoreMatch
fn clone(&self) -> IgnoreMatch
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 IgnoreMatch
impl Debug for IgnoreMatch
impl Eq for IgnoreMatch
Source§impl PartialEq for IgnoreMatch
impl PartialEq for IgnoreMatch
Source§fn eq(&self, other: &IgnoreMatch) -> bool
fn eq(&self, other: &IgnoreMatch) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for IgnoreMatch
Auto Trait Implementations§
impl Freeze for IgnoreMatch
impl RefUnwindSafe for IgnoreMatch
impl Send for IgnoreMatch
impl Sync for IgnoreMatch
impl Unpin for IgnoreMatch
impl UnsafeUnpin for IgnoreMatch
impl UnwindSafe for IgnoreMatch
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