pub struct LimitedOutput {
pub output: EffectOutput,
pub truncated: bool,
pub redactions: Vec<RedactionRecord>,
pub debug: Option<String>,
}Expand description
Output after limiting and redaction.
Fields§
§output: EffectOutputEffect output.
truncated: boolWhether any field was truncated.
redactions: Vec<RedactionRecord>Redaction records.
debug: Option<String>Redacted debug text.
Trait Implementations§
Source§impl Clone for LimitedOutput
impl Clone for LimitedOutput
Source§fn clone(&self) -> LimitedOutput
fn clone(&self) -> LimitedOutput
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 LimitedOutput
impl Debug for LimitedOutput
Source§impl PartialEq for LimitedOutput
impl PartialEq for LimitedOutput
impl StructuralPartialEq for LimitedOutput
Auto Trait Implementations§
impl Freeze for LimitedOutput
impl RefUnwindSafe for LimitedOutput
impl Send for LimitedOutput
impl Sync for LimitedOutput
impl Unpin for LimitedOutput
impl UnsafeUnpin for LimitedOutput
impl UnwindSafe for LimitedOutput
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