pub struct ValidationSettings {
pub check_fields_out_of_order: bool,
pub check_fields_have_values: bool,
pub check_user_defined_fields: bool,
pub allow_unknown_message_fields: bool,
}Expand description
Validation toggles (classic QuickFIX setting names).
Fields§
§check_fields_out_of_order: bool§check_fields_have_values: bool§check_user_defined_fields: bool§allow_unknown_message_fields: boolTrait Implementations§
Source§impl Clone for ValidationSettings
impl Clone for ValidationSettings
Source§fn clone(&self) -> ValidationSettings
fn clone(&self) -> ValidationSettings
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 ValidationSettings
impl Debug for ValidationSettings
Auto Trait Implementations§
impl Freeze for ValidationSettings
impl RefUnwindSafe for ValidationSettings
impl Send for ValidationSettings
impl Sync for ValidationSettings
impl Unpin for ValidationSettings
impl UnsafeUnpin for ValidationSettings
impl UnwindSafe for ValidationSettings
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