#[non_exhaustive]pub struct DeserializerOptions {
pub human_readable: Option<bool>,
}Expand description
Options used to configure a Deserializer. These can also be passed into
crate::from_bson_with_options and crate::from_document_with_options.
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 Deserializer should present itself as human readable or not.
The default is true.
Implementations§
Source§impl DeserializerOptions
impl DeserializerOptions
Sourcepub fn builder() -> DeserializerOptionsBuilder
pub fn builder() -> DeserializerOptionsBuilder
Create a builder struct used to construct a DeserializerOptions.
Trait Implementations§
Source§impl Clone for DeserializerOptions
impl Clone for DeserializerOptions
Source§fn clone(&self) -> DeserializerOptions
fn clone(&self) -> DeserializerOptions
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DeserializerOptions
impl Debug for DeserializerOptions
Source§impl Default for DeserializerOptions
impl Default for DeserializerOptions
Source§fn default() -> DeserializerOptions
fn default() -> DeserializerOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DeserializerOptions
impl RefUnwindSafe for DeserializerOptions
impl Send for DeserializerOptions
impl Sync for DeserializerOptions
impl Unpin for DeserializerOptions
impl UnsafeUnpin for DeserializerOptions
impl UnwindSafe for DeserializerOptions
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