pub enum WsdlError {
Parse(ParseError),
ElementNotFound(&'static str),
AttributeNotFound(&'static str),
NotAnElement,
Empty,
}
Variants§
Trait Implementations§
Source§impl From<ParseError> for WsdlError
impl From<ParseError> for WsdlError
Source§fn from(error: ParseError) -> Self
fn from(error: ParseError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for WsdlError
impl !RefUnwindSafe for WsdlError
impl Send for WsdlError
impl Sync for WsdlError
impl Unpin for WsdlError
impl !UnwindSafe for WsdlError
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