pub struct OutputContext<'a> {
pub format: OutputFormat,
pub show_hints: bool,
pub force_hex: bool,
pub show_timing: bool,
pub formatter: Option<&'a dyn VarBindFormatter>,
}Expand description
Output context for formatting.
Fields§
§format: OutputFormat§show_hints: bool§force_hex: bool§show_timing: bool§formatter: Option<&'a dyn VarBindFormatter>Optional formatter for symbolic OID names and type-aware values.
Implementations§
Source§impl<'a> OutputContext<'a>
impl<'a> OutputContext<'a>
Sourcepub fn new(format: OutputFormat) -> Self
pub fn new(format: OutputFormat) -> Self
Create a new output context with default settings.
Auto Trait Implementations§
impl<'a> Freeze for OutputContext<'a>
impl<'a> !RefUnwindSafe for OutputContext<'a>
impl<'a> !Send for OutputContext<'a>
impl<'a> !Sync for OutputContext<'a>
impl<'a> Unpin for OutputContext<'a>
impl<'a> UnsafeUnpin for OutputContext<'a>
impl<'a> !UnwindSafe for OutputContext<'a>
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more