pub enum StreamRedactionFinding {
PrivatePath,
HostName,
AbsolutePath,
Credential,
PatchBankPayload,
LargeBinaryData,
}Expand description
Category of sensitive content a redaction scan can flag in a payload.
Variants§
PrivatePath
A private user path (for example a home directory).
HostName
A host name or URL.
AbsolutePath
An absolute filesystem path.
Credential
A credential, token, or secret.
PatchBankPayload
A patch-bank or sysex-bank payload.
LargeBinaryData
A binary payload larger than the configured limit.
Implementations§
Trait Implementations§
Source§impl Clone for StreamRedactionFinding
impl Clone for StreamRedactionFinding
Source§fn clone(&self) -> StreamRedactionFinding
fn clone(&self) -> StreamRedactionFinding
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 StreamRedactionFinding
Source§impl Debug for StreamRedactionFinding
impl Debug for StreamRedactionFinding
impl Eq for StreamRedactionFinding
Source§impl PartialEq for StreamRedactionFinding
impl PartialEq for StreamRedactionFinding
Source§fn eq(&self, other: &StreamRedactionFinding) -> bool
fn eq(&self, other: &StreamRedactionFinding) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StreamRedactionFinding
Auto Trait Implementations§
impl Freeze for StreamRedactionFinding
impl RefUnwindSafe for StreamRedactionFinding
impl Send for StreamRedactionFinding
impl Sync for StreamRedactionFinding
impl Unpin for StreamRedactionFinding
impl UnsafeUnpin for StreamRedactionFinding
impl UnwindSafe for StreamRedactionFinding
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