pub enum ValidationMode {
Strict,
Lax,
}Expand description
Strict vs Lax-Validierungsmodus.
Variants§
Strict
Strikte Validierung: Namespace-Pflicht + unbekannte Elemente rejected.
Lax
Lax: Namespace optional, unbekannte Elemente ignoriert (matcht das Cyclone-/FastDDS-Verhalten).
Trait Implementations§
Source§impl Clone for ValidationMode
impl Clone for ValidationMode
Source§fn clone(&self) -> ValidationMode
fn clone(&self) -> ValidationMode
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 ValidationMode
impl Debug for ValidationMode
Source§impl Default for ValidationMode
impl Default for ValidationMode
Source§impl PartialEq for ValidationMode
impl PartialEq for ValidationMode
Source§fn eq(&self, other: &ValidationMode) -> bool
fn eq(&self, other: &ValidationMode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ValidationMode
impl Eq for ValidationMode
impl StructuralPartialEq for ValidationMode
Auto Trait Implementations§
impl Freeze for ValidationMode
impl RefUnwindSafe for ValidationMode
impl Send for ValidationMode
impl Sync for ValidationMode
impl Unpin for ValidationMode
impl UnsafeUnpin for ValidationMode
impl UnwindSafe for ValidationMode
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