#[non_exhaustive]pub struct SerializerOptions {
pub human_readable: Option<bool>,
}
Expand description
Options used to configure a Serializer
.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.human_readable: Option<bool>
Whether the Serializer
should present itself as human readable or not.
The default value is true.
Implementations§
Source§impl SerializerOptions
impl SerializerOptions
Sourcepub fn builder() -> SerializerOptionsBuilder
pub fn builder() -> SerializerOptionsBuilder
Create a builder used to construct a new SerializerOptions
.
Trait Implementations§
Source§impl Clone for SerializerOptions
impl Clone for SerializerOptions
Source§fn clone(&self) -> SerializerOptions
fn clone(&self) -> SerializerOptions
Returns a duplicate of the value. Read more
1.0.0 · 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 SerializerOptions
impl Debug for SerializerOptions
Source§impl Default for SerializerOptions
impl Default for SerializerOptions
Source§fn default() -> SerializerOptions
fn default() -> SerializerOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SerializerOptions
impl RefUnwindSafe for SerializerOptions
impl Send for SerializerOptions
impl Sync for SerializerOptions
impl Unpin for SerializerOptions
impl UnwindSafe for SerializerOptions
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