pub enum OutputStyle {
Readable,
Raw,
}Expand description
Rendering style for YAML and plain output.
Variants§
Readable
Human-readable AFDATA rendering: strip suffixes and format values.
Raw
Schema-preserving rendering: keep keys and values unchanged after redaction.
Trait Implementations§
Source§impl Clone for OutputStyle
impl Clone for OutputStyle
Source§fn clone(&self) -> OutputStyle
fn clone(&self) -> OutputStyle
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 OutputStyle
impl Debug for OutputStyle
Source§impl Default for OutputStyle
impl Default for OutputStyle
Source§fn default() -> OutputStyle
fn default() -> OutputStyle
Returns the “default value” for a type. Read more
Source§impl PartialEq for OutputStyle
impl PartialEq for OutputStyle
Source§fn eq(&self, other: &OutputStyle) -> bool
fn eq(&self, other: &OutputStyle) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for OutputStyle
impl Eq for OutputStyle
impl StructuralPartialEq for OutputStyle
Auto Trait Implementations§
impl Freeze for OutputStyle
impl RefUnwindSafe for OutputStyle
impl Send for OutputStyle
impl Sync for OutputStyle
impl Unpin for OutputStyle
impl UnsafeUnpin for OutputStyle
impl UnwindSafe for OutputStyle
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