pub enum IgnoreField {
Status,
Headers,
Body,
}Expand description
Diff field a caller wants to ignore.
Variants§
Status
Don’t flag a status-code difference.
Headers
Don’t flag a header difference.
Body
Don’t flag a body difference.
Trait Implementations§
Source§impl Clone for IgnoreField
impl Clone for IgnoreField
Source§fn clone(&self) -> IgnoreField
fn clone(&self) -> IgnoreField
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 IgnoreField
impl Debug for IgnoreField
Source§impl PartialEq for IgnoreField
impl PartialEq for IgnoreField
Source§fn eq(&self, other: &IgnoreField) -> bool
fn eq(&self, other: &IgnoreField) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for IgnoreField
impl Eq for IgnoreField
impl StructuralPartialEq for IgnoreField
Auto Trait Implementations§
impl Freeze for IgnoreField
impl RefUnwindSafe for IgnoreField
impl Send for IgnoreField
impl Sync for IgnoreField
impl Unpin for IgnoreField
impl UnsafeUnpin for IgnoreField
impl UnwindSafe for IgnoreField
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