pub struct SimpleTypeResult {
pub typed_value: XmlValue,
pub member_type: Option<TypeKey>,
pub normalized_value: Option<String>,
}Expand description
Result of simple type validation
Fields§
§typed_value: XmlValueThe typed value produced by validation
member_type: Option<TypeKey>For union types: the member type that matched
normalized_value: Option<String>The whitespace-normalized value (PSVI [schema normalized value])
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SimpleTypeResult
impl RefUnwindSafe for SimpleTypeResult
impl Send for SimpleTypeResult
impl Sync for SimpleTypeResult
impl Unpin for SimpleTypeResult
impl UnsafeUnpin for SimpleTypeResult
impl UnwindSafe for SimpleTypeResult
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