pub struct AuditProgress {
pub processed_namespaces: usize,
pub total_namespaces: usize,
pub current_namespace: Option<String>,
pub threshold: u8,
}Fields§
§processed_namespaces: usize§total_namespaces: usize§current_namespace: Option<String>§threshold: u8Trait Implementations§
Source§impl Clone for AuditProgress
impl Clone for AuditProgress
Source§fn clone(&self) -> AuditProgress
fn clone(&self) -> AuditProgress
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 AuditProgress
impl Debug for AuditProgress
Source§impl Default for AuditProgress
impl Default for AuditProgress
Source§fn default() -> AuditProgress
fn default() -> AuditProgress
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AuditProgress
impl<'de> Deserialize<'de> for AuditProgress
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AuditProgress
impl PartialEq for AuditProgress
Source§fn eq(&self, other: &AuditProgress) -> bool
fn eq(&self, other: &AuditProgress) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AuditProgress
impl Serialize for AuditProgress
impl Eq for AuditProgress
impl StructuralPartialEq for AuditProgress
Auto Trait Implementations§
impl Freeze for AuditProgress
impl RefUnwindSafe for AuditProgress
impl Send for AuditProgress
impl Sync for AuditProgress
impl Unpin for AuditProgress
impl UnsafeUnpin for AuditProgress
impl UnwindSafe for AuditProgress
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