Struct ncryptf::serde::json::serde_json::ser::CompactFormatter
source · pub struct CompactFormatter;
json
only.Expand description
This structure compacts a JSON value with no extra whitespace.
Trait Implementations§
source§impl Clone for CompactFormatter
impl Clone for CompactFormatter
source§fn clone(&self) -> CompactFormatter
fn clone(&self) -> CompactFormatter
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CompactFormatter
impl Debug for CompactFormatter
source§impl Formatter for CompactFormatter
impl Formatter for CompactFormatter
source§fn write_null<W>(&mut self, writer: &mut W) -> Result<(), Error>
fn write_null<W>(&mut self, writer: &mut W) -> Result<(), Error>
null
value to the specified writer.source§fn write_bool<W>(&mut self, writer: &mut W, value: bool) -> Result<(), Error>
fn write_bool<W>(&mut self, writer: &mut W, value: bool) -> Result<(), Error>
true
or false
value to the specified writer.source§fn write_i8<W>(&mut self, writer: &mut W, value: i8) -> Result<(), Error>
fn write_i8<W>(&mut self, writer: &mut W, value: i8) -> Result<(), Error>
-123
to the specified writer.source§fn write_i16<W>(&mut self, writer: &mut W, value: i16) -> Result<(), Error>
fn write_i16<W>(&mut self, writer: &mut W, value: i16) -> Result<(), Error>
-123
to the specified writer.source§fn write_i32<W>(&mut self, writer: &mut W, value: i32) -> Result<(), Error>
fn write_i32<W>(&mut self, writer: &mut W, value: i32) -> Result<(), Error>
-123
to the specified writer.source§fn write_i64<W>(&mut self, writer: &mut W, value: i64) -> Result<(), Error>
fn write_i64<W>(&mut self, writer: &mut W, value: i64) -> Result<(), Error>
-123
to the specified writer.source§fn write_i128<W>(&mut self, writer: &mut W, value: i128) -> Result<(), Error>
fn write_i128<W>(&mut self, writer: &mut W, value: i128) -> Result<(), Error>
-123
to the specified writer.source§fn write_u8<W>(&mut self, writer: &mut W, value: u8) -> Result<(), Error>
fn write_u8<W>(&mut self, writer: &mut W, value: u8) -> Result<(), Error>
123
to the specified writer.source§fn write_u16<W>(&mut self, writer: &mut W, value: u16) -> Result<(), Error>
fn write_u16<W>(&mut self, writer: &mut W, value: u16) -> Result<(), Error>
123
to the specified writer.source§fn write_u32<W>(&mut self, writer: &mut W, value: u32) -> Result<(), Error>
fn write_u32<W>(&mut self, writer: &mut W, value: u32) -> Result<(), Error>
123
to the specified writer.source§fn write_u64<W>(&mut self, writer: &mut W, value: u64) -> Result<(), Error>
fn write_u64<W>(&mut self, writer: &mut W, value: u64) -> Result<(), Error>
123
to the specified writer.source§fn write_u128<W>(&mut self, writer: &mut W, value: u128) -> Result<(), Error>
fn write_u128<W>(&mut self, writer: &mut W, value: u128) -> Result<(), Error>
123
to the specified writer.source§fn write_f32<W>(&mut self, writer: &mut W, value: f32) -> Result<(), Error>
fn write_f32<W>(&mut self, writer: &mut W, value: f32) -> Result<(), Error>
-31.26e+12
to the specified writer.source§fn write_f64<W>(&mut self, writer: &mut W, value: f64) -> Result<(), Error>
fn write_f64<W>(&mut self, writer: &mut W, value: f64) -> Result<(), Error>
-31.26e+12
to the specified writer.source§fn write_number_str<W>(
&mut self,
writer: &mut W,
value: &str
) -> Result<(), Error>
fn write_number_str<W>( &mut self, writer: &mut W, value: &str ) -> Result<(), Error>
source§fn begin_string<W>(&mut self, writer: &mut W) -> Result<(), Error>
fn begin_string<W>(&mut self, writer: &mut W) -> Result<(), Error>
write_string_fragment
and
write_char_escape
. Writes a "
to the specified writer.source§fn end_string<W>(&mut self, writer: &mut W) -> Result<(), Error>
fn end_string<W>(&mut self, writer: &mut W) -> Result<(), Error>
write_string_fragment
and
write_char_escape
. Writes a "
to the specified writer.source§fn write_string_fragment<W>(
&mut self,
writer: &mut W,
fragment: &str
) -> Result<(), Error>
fn write_string_fragment<W>( &mut self, writer: &mut W, fragment: &str ) -> Result<(), Error>
source§fn write_char_escape<W>(
&mut self,
writer: &mut W,
char_escape: CharEscape
) -> Result<(), Error>
fn write_char_escape<W>( &mut self, writer: &mut W, char_escape: CharEscape ) -> Result<(), Error>
source§fn write_byte_array<W>(
&mut self,
writer: &mut W,
value: &[u8]
) -> Result<(), Error>
fn write_byte_array<W>( &mut self, writer: &mut W, value: &[u8] ) -> Result<(), Error>
source§fn begin_array<W>(&mut self, writer: &mut W) -> Result<(), Error>
fn begin_array<W>(&mut self, writer: &mut W) -> Result<(), Error>
[
to the specified
writer.source§fn end_array<W>(&mut self, writer: &mut W) -> Result<(), Error>
fn end_array<W>(&mut self, writer: &mut W) -> Result<(), Error>
]
to the specified
writer.source§fn begin_array_value<W>(
&mut self,
writer: &mut W,
first: bool
) -> Result<(), Error>
fn begin_array_value<W>( &mut self, writer: &mut W, first: bool ) -> Result<(), Error>
,
if needed to
the specified writer.source§fn end_array_value<W>(&mut self, _writer: &mut W) -> Result<(), Error>
fn end_array_value<W>(&mut self, _writer: &mut W) -> Result<(), Error>
source§fn begin_object<W>(&mut self, writer: &mut W) -> Result<(), Error>
fn begin_object<W>(&mut self, writer: &mut W) -> Result<(), Error>
{
to the specified
writer.source§fn end_object<W>(&mut self, writer: &mut W) -> Result<(), Error>
fn end_object<W>(&mut self, writer: &mut W) -> Result<(), Error>
}
to the specified
writer.source§fn begin_object_key<W>(
&mut self,
writer: &mut W,
first: bool
) -> Result<(), Error>
fn begin_object_key<W>( &mut self, writer: &mut W, first: bool ) -> Result<(), Error>
source§fn end_object_key<W>(&mut self, _writer: &mut W) -> Result<(), Error>
fn end_object_key<W>(&mut self, _writer: &mut W) -> Result<(), Error>
:
should be written to the
specified writer by either this method or
begin_object_value
.source§fn begin_object_value<W>(&mut self, writer: &mut W) -> Result<(), Error>
fn begin_object_value<W>(&mut self, writer: &mut W) -> Result<(), Error>
:
should be written to
the specified writer by either this method or
end_object_key
.Auto Trait Implementations§
impl RefUnwindSafe for CompactFormatter
impl Send for CompactFormatter
impl Sync for CompactFormatter
impl Unpin for CompactFormatter
impl UnwindSafe for CompactFormatter
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
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>
§impl<T> IntoCollection<T> for T
impl<T> IntoCollection<T> for T
§fn into_collection<A>(self) -> SmallVec<A>where
A: Array<Item = T>,
fn into_collection<A>(self) -> SmallVec<A>where
A: Array<Item = T>,
self
into a collection.fn mapped<U, F, A>(self, f: F) -> SmallVec<A>where
F: FnMut(T) -> U,
A: Array<Item = U>,
§impl<T> Paint for Twhere
T: ?Sized,
impl<T> Paint for Twhere
T: ?Sized,
§fn fg(&self, value: Color) -> Painted<&T>
fn fg(&self, value: Color) -> Painted<&T>
Returns a styled value derived from self
with the foreground set to
value
.
This method should be used rarely. Instead, prefer to use color-specific
builder methods like red()
and
green()
, which have the same functionality but are
pithier.
Example
Set foreground color to white using fg()
:
use yansi::{Paint, Color};
painted.fg(Color::White);
Set foreground color to white using white()
.
use yansi::Paint;
painted.white();
§fn bright_black(&self) -> Painted<&T>
fn bright_black(&self) -> Painted<&T>
§fn bright_red(&self) -> Painted<&T>
fn bright_red(&self) -> Painted<&T>
§fn bright_green(&self) -> Painted<&T>
fn bright_green(&self) -> Painted<&T>
§fn bright_yellow(&self) -> Painted<&T>
fn bright_yellow(&self) -> Painted<&T>
§fn bright_blue(&self) -> Painted<&T>
fn bright_blue(&self) -> Painted<&T>
§fn bright_magenta(&self) -> Painted<&T>
fn bright_magenta(&self) -> Painted<&T>
§fn bright_cyan(&self) -> Painted<&T>
fn bright_cyan(&self) -> Painted<&T>
§fn bright_white(&self) -> Painted<&T>
fn bright_white(&self) -> Painted<&T>
§fn bg(&self, value: Color) -> Painted<&T>
fn bg(&self, value: Color) -> Painted<&T>
Returns a styled value derived from self
with the background set to
value
.
This method should be used rarely. Instead, prefer to use color-specific
builder methods like on_red()
and
on_green()
, which have the same functionality but
are pithier.
Example
Set background color to red using fg()
:
use yansi::{Paint, Color};
painted.bg(Color::Red);
Set background color to red using on_red()
.
use yansi::Paint;
painted.on_red();
§fn on_primary(&self) -> Painted<&T>
fn on_primary(&self) -> Painted<&T>
§fn on_magenta(&self) -> Painted<&T>
fn on_magenta(&self) -> Painted<&T>
§fn on_bright_black(&self) -> Painted<&T>
fn on_bright_black(&self) -> Painted<&T>
§fn on_bright_red(&self) -> Painted<&T>
fn on_bright_red(&self) -> Painted<&T>
§fn on_bright_green(&self) -> Painted<&T>
fn on_bright_green(&self) -> Painted<&T>
§fn on_bright_yellow(&self) -> Painted<&T>
fn on_bright_yellow(&self) -> Painted<&T>
§fn on_bright_blue(&self) -> Painted<&T>
fn on_bright_blue(&self) -> Painted<&T>
§fn on_bright_magenta(&self) -> Painted<&T>
fn on_bright_magenta(&self) -> Painted<&T>
§fn on_bright_cyan(&self) -> Painted<&T>
fn on_bright_cyan(&self) -> Painted<&T>
§fn on_bright_white(&self) -> Painted<&T>
fn on_bright_white(&self) -> Painted<&T>
§fn attr(&self, value: Attribute) -> Painted<&T>
fn attr(&self, value: Attribute) -> Painted<&T>
Enables the styling [Attribute
] value
.
This method should be used rarely. Instead, prefer to use
attribute-specific builder methods like bold()
and
underline()
, which have the same functionality
but are pithier.
Example
Make text bold using attr()
:
use yansi::{Paint, Attribute};
painted.attr(Attribute::Bold);
Make text bold using using bold()
.
use yansi::Paint;
painted.bold();
§fn rapid_blink(&self) -> Painted<&T>
fn rapid_blink(&self) -> Painted<&T>
§fn quirk(&self, value: Quirk) -> Painted<&T>
fn quirk(&self, value: Quirk) -> Painted<&T>
Enables the yansi
[Quirk
] value
.
This method should be used rarely. Instead, prefer to use quirk-specific
builder methods like mask()
and
wrap()
, which have the same functionality but are
pithier.
Example
Enable wrapping using .quirk()
:
use yansi::{Paint, Quirk};
painted.quirk(Quirk::Wrap);
Enable wrapping using wrap()
.
use yansi::Paint;
painted.wrap();
§fn whenever(&self, value: Condition) -> Painted<&T>
fn whenever(&self, value: Condition) -> Painted<&T>
Conditionally enable styling based on whether the [Condition
] value
applies. Replaces any previous condition.
See the crate level docs for more details.
Example
Enable styling painted
only when both stdout
and stderr
are TTYs:
use yansi::{Paint, Condition};
painted.red().on_yellow().whenever(Condition::STDOUTERR_ARE_TTY);