pub struct AuditOptions {
pub deep: bool,
pub fix: bool,
pub json: bool,
}Expand description
Options for running an audit (port of AuditOptions, minus context which
is passed explicitly).
Fields§
§deep: bool§fix: bool§json: boolTrait Implementations§
Source§impl Clone for AuditOptions
impl Clone for AuditOptions
Source§fn clone(&self) -> AuditOptions
fn clone(&self) -> AuditOptions
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 moreimpl Copy for AuditOptions
Source§impl Debug for AuditOptions
impl Debug for AuditOptions
Source§impl Default for AuditOptions
impl Default for AuditOptions
Source§fn default() -> AuditOptions
fn default() -> AuditOptions
Returns the “default value” for a type. Read more
impl Eq for AuditOptions
Source§impl PartialEq for AuditOptions
impl PartialEq for AuditOptions
Source§fn eq(&self, other: &AuditOptions) -> bool
fn eq(&self, other: &AuditOptions) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AuditOptions
Auto Trait Implementations§
impl Freeze for AuditOptions
impl RefUnwindSafe for AuditOptions
impl Send for AuditOptions
impl Sync for AuditOptions
impl Unpin for AuditOptions
impl UnsafeUnpin for AuditOptions
impl UnwindSafe for AuditOptions
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