pub enum ResidualLocation {
MissingRedactionRecord,
CommentNotRedacted {
comment_id: i64,
},
Fts5Index {
matched_term: String,
},
}Expand description
A location where residual (un-redacted) content was found.
Variants§
MissingRedactionRecord
Redaction record missing from event_redactions table.
CommentNotRedacted
Comment body not replaced with [redacted].
Fts5Index
Content found in FTS5 index (the redacted text is still searchable).
Trait Implementations§
Source§impl Clone for ResidualLocation
impl Clone for ResidualLocation
Source§fn clone(&self) -> ResidualLocation
fn clone(&self) -> ResidualLocation
Returns a duplicate of the value. Read more
1.0.0 · 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 ResidualLocation
impl Debug for ResidualLocation
Source§impl PartialEq for ResidualLocation
impl PartialEq for ResidualLocation
Source§impl Serialize for ResidualLocation
impl Serialize for ResidualLocation
impl Eq for ResidualLocation
impl StructuralPartialEq for ResidualLocation
Auto Trait Implementations§
impl Freeze for ResidualLocation
impl RefUnwindSafe for ResidualLocation
impl Send for ResidualLocation
impl Sync for ResidualLocation
impl Unpin for ResidualLocation
impl UnsafeUnpin for ResidualLocation
impl UnwindSafe for ResidualLocation
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.