Struct otter_api_tests::serde_json::ser::CompactFormatter [−][src]
pub struct CompactFormatter;
This structure compacts a JSON value with no extra whitespace.
Trait Implementations
impl Clone for CompactFormatter[src]
pub fn clone(&self) -> CompactFormatter[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for CompactFormatter[src]
impl Formatter for CompactFormatter[src]
pub fn write_null<W>(&mut self, writer: &mut W) -> Result<(), Error> where
W: Write + ?Sized, [src]
W: Write + ?Sized,
pub fn write_bool<W>(
&mut self,
writer: &mut W,
value: bool
) -> Result<(), Error> where
W: Write + ?Sized, [src]
&mut self,
writer: &mut W,
value: bool
) -> Result<(), Error> where
W: Write + ?Sized,
pub fn write_i8<W>(&mut self, writer: &mut W, value: i8) -> Result<(), Error> where
W: Write + ?Sized, [src]
W: Write + ?Sized,
pub fn write_i16<W>(&mut self, writer: &mut W, value: i16) -> Result<(), Error> where
W: Write + ?Sized, [src]
W: Write + ?Sized,
pub fn write_i32<W>(&mut self, writer: &mut W, value: i32) -> Result<(), Error> where
W: Write + ?Sized, [src]
W: Write + ?Sized,
pub fn write_i64<W>(&mut self, writer: &mut W, value: i64) -> Result<(), Error> where
W: Write + ?Sized, [src]
W: Write + ?Sized,
pub fn write_u8<W>(&mut self, writer: &mut W, value: u8) -> Result<(), Error> where
W: Write + ?Sized, [src]
W: Write + ?Sized,
pub fn write_u16<W>(&mut self, writer: &mut W, value: u16) -> Result<(), Error> where
W: Write + ?Sized, [src]
W: Write + ?Sized,
pub fn write_u32<W>(&mut self, writer: &mut W, value: u32) -> Result<(), Error> where
W: Write + ?Sized, [src]
W: Write + ?Sized,
pub fn write_u64<W>(&mut self, writer: &mut W, value: u64) -> Result<(), Error> where
W: Write + ?Sized, [src]
W: Write + ?Sized,
pub fn write_f32<W>(&mut self, writer: &mut W, value: f32) -> Result<(), Error> where
W: Write + ?Sized, [src]
W: Write + ?Sized,
pub fn write_f64<W>(&mut self, writer: &mut W, value: f64) -> Result<(), Error> where
W: Write + ?Sized, [src]
W: Write + ?Sized,
pub fn write_number_str<W>(
&mut self,
writer: &mut W,
value: &str
) -> Result<(), Error> where
W: Write + ?Sized, [src]
&mut self,
writer: &mut W,
value: &str
) -> Result<(), Error> where
W: Write + ?Sized,
pub fn begin_string<W>(&mut self, writer: &mut W) -> Result<(), Error> where
W: Write + ?Sized, [src]
W: Write + ?Sized,
pub fn end_string<W>(&mut self, writer: &mut W) -> Result<(), Error> where
W: Write + ?Sized, [src]
W: Write + ?Sized,
pub fn write_string_fragment<W>(
&mut self,
writer: &mut W,
fragment: &str
) -> Result<(), Error> where
W: Write + ?Sized, [src]
&mut self,
writer: &mut W,
fragment: &str
) -> Result<(), Error> where
W: Write + ?Sized,
pub fn write_char_escape<W>(
&mut self,
writer: &mut W,
char_escape: CharEscape
) -> Result<(), Error> where
W: Write + ?Sized, [src]
&mut self,
writer: &mut W,
char_escape: CharEscape
) -> Result<(), Error> where
W: Write + ?Sized,
pub fn begin_array<W>(&mut self, writer: &mut W) -> Result<(), Error> where
W: Write + ?Sized, [src]
W: Write + ?Sized,
pub fn end_array<W>(&mut self, writer: &mut W) -> Result<(), Error> where
W: Write + ?Sized, [src]
W: Write + ?Sized,
pub fn begin_array_value<W>(
&mut self,
writer: &mut W,
first: bool
) -> Result<(), Error> where
W: Write + ?Sized, [src]
&mut self,
writer: &mut W,
first: bool
) -> Result<(), Error> where
W: Write + ?Sized,
pub fn end_array_value<W>(&mut self, _writer: &mut W) -> Result<(), Error> where
W: Write + ?Sized, [src]
W: Write + ?Sized,
pub fn begin_object<W>(&mut self, writer: &mut W) -> Result<(), Error> where
W: Write + ?Sized, [src]
W: Write + ?Sized,
pub fn end_object<W>(&mut self, writer: &mut W) -> Result<(), Error> where
W: Write + ?Sized, [src]
W: Write + ?Sized,
pub fn begin_object_key<W>(
&mut self,
writer: &mut W,
first: bool
) -> Result<(), Error> where
W: Write + ?Sized, [src]
&mut self,
writer: &mut W,
first: bool
) -> Result<(), Error> where
W: Write + ?Sized,
pub fn end_object_key<W>(&mut self, _writer: &mut W) -> Result<(), Error> where
W: Write + ?Sized, [src]
W: Write + ?Sized,
pub fn begin_object_value<W>(&mut self, writer: &mut W) -> Result<(), Error> where
W: Write + ?Sized, [src]
W: Write + ?Sized,
pub fn end_object_value<W>(&mut self, _writer: &mut W) -> Result<(), Error> where
W: Write + ?Sized, [src]
W: Write + ?Sized,
pub fn write_raw_fragment<W>(
&mut self,
writer: &mut W,
fragment: &str
) -> Result<(), Error> where
W: Write + ?Sized, [src]
&mut self,
writer: &mut W,
fragment: &str
) -> Result<(), Error> where
W: Write + ?Sized,
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
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow(&self) -> &TⓘNotable traits for &'_ mut R
impl<'_, R> Read for &'_ mut R where
R: Read + ?Sized, impl<'_, W> Write for &'_ mut W where
W: Write + ?Sized, impl<'_, I> Iterator for &'_ mut I where
I: Iterator + ?Sized, type Item = <I as Iterator>::Item;impl<'_, F> Future for &'_ mut F where
F: Future + Unpin + ?Sized, type Output = <F as Future>::Output;[src]
Notable traits for &'_ mut R
impl<'_, R> Read for &'_ mut R where
R: Read + ?Sized, impl<'_, W> Write for &'_ mut W where
W: Write + ?Sized, impl<'_, I> Iterator for &'_ mut I where
I: Iterator + ?Sized, type Item = <I as Iterator>::Item;impl<'_, F> Future for &'_ mut F where
F: Future + Unpin + ?Sized, type Output = <F as Future>::Output;impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut TⓘNotable traits for &'_ mut R
impl<'_, R> Read for &'_ mut R where
R: Read + ?Sized, impl<'_, W> Write for &'_ mut W where
W: Write + ?Sized, impl<'_, I> Iterator for &'_ mut I where
I: Iterator + ?Sized, type Item = <I as Iterator>::Item;impl<'_, F> Future for &'_ mut F where
F: Future + Unpin + ?Sized, type Output = <F as Future>::Output;[src]
Notable traits for &'_ mut R
impl<'_, R> Read for &'_ mut R where
R: Read + ?Sized, impl<'_, W> Write for &'_ mut W where
W: Write + ?Sized, impl<'_, I> Iterator for &'_ mut I where
I: Iterator + ?Sized, type Item = <I as Iterator>::Item;impl<'_, F> Future for &'_ mut F where
F: Future + Unpin + ?Sized, type Output = <F as Future>::Output;impl<T> Downcast for T where
T: Any,
T: Any,
pub fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>ⓘNotable traits for Box<R, Global>
impl<R> Read for Box<R, Global> where
R: Read + ?Sized, impl<W> Write for Box<W, Global> where
W: Write + ?Sized, impl<F, A> Future for Box<F, A> where
A: Allocator + 'static,
F: Future + Unpin + ?Sized, type Output = <F as Future>::Output;impl<I, A> Iterator for Box<I, A> where
A: Allocator,
I: Iterator + ?Sized, type Item = <I as Iterator>::Item;
Notable traits for Box<R, Global>
impl<R> Read for Box<R, Global> where
R: Read + ?Sized, impl<W> Write for Box<W, Global> where
W: Write + ?Sized, impl<F, A> Future for Box<F, A> where
A: Allocator + 'static,
F: Future + Unpin + ?Sized, type Output = <F as Future>::Output;impl<I, A> Iterator for Box<I, A> where
A: Allocator,
I: Iterator + ?Sized, type Item = <I as Iterator>::Item;pub fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
pub fn as_any(&self) -> &(dyn Any + 'static)
pub fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
impl<T> DowncastSync for T where
T: Any + Send + Sync,
T: Any + Send + Sync,
impl<A> DynCastExt for A
pub fn dyn_cast<T>(
self
) -> Result<<A as DynCastExtHelper<T>>::Target, <A as DynCastExtHelper<T>>::Source> where
T: ?Sized,
A: DynCastExtHelper<T>,
self
) -> Result<<A as DynCastExtHelper<T>>::Target, <A as DynCastExtHelper<T>>::Source> where
T: ?Sized,
A: DynCastExtHelper<T>,
pub fn dyn_upcast<T>(self) -> <A as DynCastExtAdvHelper<T, T>>::Target where
T: ?Sized,
A: DynCastExtAdvHelper<T, T, Source = <A as DynCastExtAdvHelper<T, T>>::Target>,
T: ?Sized,
A: DynCastExtAdvHelper<T, T, Source = <A as DynCastExtAdvHelper<T, T>>::Target>,
pub fn dyn_cast_adv<F, T>(
self
) -> Result<<A as DynCastExtAdvHelper<F, T>>::Target, <A as DynCastExtAdvHelper<F, T>>::Source> where
T: ?Sized,
A: DynCastExtAdvHelper<F, T>,
F: ?Sized,
self
) -> Result<<A as DynCastExtAdvHelper<F, T>>::Target, <A as DynCastExtAdvHelper<F, T>>::Source> where
T: ?Sized,
A: DynCastExtAdvHelper<F, T>,
F: ?Sized,
pub fn dyn_cast_with_config<C>(
self
) -> Result<<A as DynCastExtAdvHelper<<C as DynCastConfig>::Source, <C as DynCastConfig>::Target>>::Target, <A as DynCastExtAdvHelper<<C as DynCastConfig>::Source, <C as DynCastConfig>::Target>>::Source> where
C: DynCastConfig,
A: DynCastExtAdvHelper<<C as DynCastConfig>::Source, <C as DynCastConfig>::Target>,
self
) -> Result<<A as DynCastExtAdvHelper<<C as DynCastConfig>::Source, <C as DynCastConfig>::Target>>::Target, <A as DynCastExtAdvHelper<<C as DynCastConfig>::Source, <C as DynCastConfig>::Target>>::Source> where
C: DynCastConfig,
A: DynCastExtAdvHelper<<C as DynCastConfig>::Source, <C as DynCastConfig>::Target>,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,