pub enum RecaptchaEntError {
InvalidReason(String),
UnknownReason,
ApiError(RecaptchaEntApiResponse),
HttpError(Error),
DecodingError(Error),
UnexpectedResponse(String, String, String),
}Expand description
Error returned when ReCaptcha verification fails
Variants§
InvalidReason(String)
UnknownReason
ApiError(RecaptchaEntApiResponse)
HttpError(Error)
DecodingError(Error)
UnexpectedResponse(String, String, String)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RecaptchaEntError
impl !RefUnwindSafe for RecaptchaEntError
impl Send for RecaptchaEntError
impl Sync for RecaptchaEntError
impl Unpin for RecaptchaEntError
impl !UnwindSafe for RecaptchaEntError
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