pub struct RedactionResult {
pub redacted_text: String,
pub findings: Vec<Finding>,
pub applied_replacements: Vec<AppliedReplacement>,
pub stats: RedactionStats,
}Fields§
§redacted_text: String§findings: Vec<Finding>§applied_replacements: Vec<AppliedReplacement>§stats: RedactionStatsTrait Implementations§
Source§impl Clone for RedactionResult
impl Clone for RedactionResult
Source§fn clone(&self) -> RedactionResult
fn clone(&self) -> RedactionResult
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 RedactionResult
impl Debug for RedactionResult
Source§impl<'de> Deserialize<'de> for RedactionResult
impl<'de> Deserialize<'de> for RedactionResult
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 RedactionResult
impl PartialEq for RedactionResult
Source§fn eq(&self, other: &RedactionResult) -> bool
fn eq(&self, other: &RedactionResult) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RedactionResult
impl Serialize for RedactionResult
impl Eq for RedactionResult
impl StructuralPartialEq for RedactionResult
Auto Trait Implementations§
impl Freeze for RedactionResult
impl RefUnwindSafe for RedactionResult
impl Send for RedactionResult
impl Sync for RedactionResult
impl Unpin for RedactionResult
impl UnsafeUnpin for RedactionResult
impl UnwindSafe for RedactionResult
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