Struct protobuf_json_mapping::ParseOptions
source · [−]Expand description
JSON parse options.
Examples
let parse_options = protobuf_json_mapping::ParseOptions {
ignore_unknown_fields: true,
..Default::default()
};
Fields
ignore_unknown_fields: bool
Ignore unknown fields when parsing.
When true
fields with unknown names are ignored.
When false
parser returns an error on unknown field.
_future_options: ()
Prevent initializing ParseOptions
enumerating all field.
Trait Implementations
sourceimpl Clone for ParseOptions
impl Clone for ParseOptions
sourcefn clone(&self) -> ParseOptions
fn clone(&self) -> ParseOptions
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for ParseOptions
impl Debug for ParseOptions
sourceimpl Default for ParseOptions
impl Default for ParseOptions
sourcefn default() -> ParseOptions
fn default() -> ParseOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl RefUnwindSafe for ParseOptions
impl Send for ParseOptions
impl Sync for ParseOptions
impl Unpin for ParseOptions
impl UnwindSafe for ParseOptions
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more