pub struct RedactionRecord {
pub field: String,
pub reason: String,
}Expand description
A redaction that was applied to an exported record or text field.
Fields§
§field: StringField where redaction occurred.
reason: StringHuman-readable redaction reason.
Trait Implementations§
Source§impl Clone for RedactionRecord
impl Clone for RedactionRecord
Source§fn clone(&self) -> RedactionRecord
fn clone(&self) -> RedactionRecord
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 RedactionRecord
impl Debug for RedactionRecord
Source§impl<'de> Deserialize<'de> for RedactionRecord
impl<'de> Deserialize<'de> for RedactionRecord
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
impl Eq for RedactionRecord
Source§impl PartialEq for RedactionRecord
impl PartialEq for RedactionRecord
Source§impl Serialize for RedactionRecord
impl Serialize for RedactionRecord
impl StructuralPartialEq for RedactionRecord
Auto Trait Implementations§
impl Freeze for RedactionRecord
impl RefUnwindSafe for RedactionRecord
impl Send for RedactionRecord
impl Sync for RedactionRecord
impl Unpin for RedactionRecord
impl UnsafeUnpin for RedactionRecord
impl UnwindSafe for RedactionRecord
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