Struct JsonParseSettings
pub struct JsonParseSettings {
pub unknown_tags_handling: JsonTagsHandlingAction,
pub allow_zero_num_in_group: bool,
}Expand description
JSON/FIXML message parsing settings Mirrors Engine::Mapping::ParseSettings from C++
Fields§
How to handle unknown (custom) fields while parsing JSON/FIXML message
allow_zero_num_in_group: boolAccept and keep zero sized repeating groups (allowed by JSON encoding standard)
Trait Implementations§
§impl Clone for JsonParseSettings
impl Clone for JsonParseSettings
§fn clone(&self) -> JsonParseSettings
fn clone(&self) -> JsonParseSettings
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 more§impl Debug for JsonParseSettings
impl Debug for JsonParseSettings
§impl Default for JsonParseSettings
impl Default for JsonParseSettings
Auto Trait Implementations§
impl Freeze for JsonParseSettings
impl RefUnwindSafe for JsonParseSettings
impl Send for JsonParseSettings
impl Sync for JsonParseSettings
impl Unpin for JsonParseSettings
impl UnwindSafe for JsonParseSettings
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