pub struct Writer { /* private fields */ }Expand description
Renders responses in the selected form.
Implementations§
Source§impl Writer
impl Writer
Sourcepub const fn new(form: OutputForm, color: bool) -> Self
pub const fn new(form: OutputForm, color: bool) -> Self
Binds one output form and styling decision.
Sourcepub const fn form(&self) -> OutputForm
pub const fn form(&self) -> OutputForm
Returns the selected output form.
Sourcepub fn emit<H: Host>(
&self,
host: &mut H,
response: &Response,
) -> Result<(), OutputFailure>
pub fn emit<H: Host>( &self, host: &mut H, response: &Response, ) -> Result<(), OutputFailure>
Writes one response.
Output stops at the first write failure and performs no further write, so a closed pipe produces one bounded attempt rather than a loop.
§Errors
Returns OutputFailure when standard output cannot be written.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Writer
impl RefUnwindSafe for Writer
impl Send for Writer
impl Sync for Writer
impl Unpin for Writer
impl UnsafeUnpin for Writer
impl UnwindSafe for Writer
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<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