pub enum RecaptchaError {
Unknown(Option<String>),
HttpError(Error),
MissingInputSecret,
InvalidInputSecret,
MissingInputResponse,
InvalidInputResponse,
BadRequest,
TimeoutOrDuplicate,
}Expand description
Error returned when ReCaptcha verification fails
Variants§
Unknown(Option<String>)
HttpError(Error)
MissingInputSecret
InvalidInputSecret
MissingInputResponse
InvalidInputResponse
BadRequest
TimeoutOrDuplicate
Trait Implementations§
Source§impl Debug for RecaptchaError
impl Debug for RecaptchaError
Auto Trait Implementations§
impl Freeze for RecaptchaError
impl !RefUnwindSafe for RecaptchaError
impl Send for RecaptchaError
impl Sync for RecaptchaError
impl Unpin for RecaptchaError
impl !UnwindSafe for RecaptchaError
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