Enum easy_captcha::CaptchaType
source · pub enum CaptchaType {
TypeDefault = 1,
TypeOnlyNumber = 2,
TypeOnlyChar = 3,
TypeOnlyUpper = 4,
TypeOnlyLower = 5,
TypeNumAndUpper = 6,
}Expand description
验证码文本类型 The character type of the captcha
Variants§
TypeDefault = 1
字母数字混合
TypeOnlyNumber = 2
纯数字
TypeOnlyChar = 3
纯字母
TypeOnlyUpper = 4
纯大写字母
TypeOnlyLower = 5
纯小写字母
TypeNumAndUpper = 6
数字大写字母
Auto Trait Implementations§
impl RefUnwindSafe for CaptchaType
impl Send for CaptchaType
impl Sync for CaptchaType
impl Unpin for CaptchaType
impl UnwindSafe for CaptchaType
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