pub enum ValidateTicketError {
AuthenticationFailed,
RequestError,
XMLParsingError,
}
Expand description
Types of errors that could happen in ticket validation.
Variants§
AuthenticationFailed
Failed ticket authentication.
RequestError
Errors regarding the validation request.
XMLParsingError
Error parsing the XML response.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ValidateTicketError
impl RefUnwindSafe for ValidateTicketError
impl Send for ValidateTicketError
impl Sync for ValidateTicketError
impl Unpin for ValidateTicketError
impl UnwindSafe for ValidateTicketError
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