pub enum ParseXsdError<L, V> {
InvalidLexicalForm(L),
InvalidValue(V),
}
Expand description
XSD lexical parse error.
Variants§
Auto Trait Implementations§
impl<L, V> Freeze for ParseXsdError<L, V>
impl<L, V> RefUnwindSafe for ParseXsdError<L, V>where
L: RefUnwindSafe,
V: RefUnwindSafe,
impl<L, V> Send for ParseXsdError<L, V>
impl<L, V> Sync for ParseXsdError<L, V>
impl<L, V> Unpin for ParseXsdError<L, V>
impl<L, V> UnwindSafe for ParseXsdError<L, V>where
L: UnwindSafe,
V: UnwindSafe,
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