pub trait ParseXsd: Sized {
type LexicalForm: LexicalFormOf<Self> + ?Sized;
// Provided method
fn parse_xsd(lexical_value: &str) -> ParseXsdResult<Self, Self::LexicalForm> { ... }
}Expand description
Parse a value directly from its XSD lexical form.
Required Associated Types§
type LexicalForm: LexicalFormOf<Self> + ?Sized
Provided Methods§
fn parse_xsd(lexical_value: &str) -> ParseXsdResult<Self, Self::LexicalForm>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.