[−][src]Struct m_captcha::defense::Defense
struct describes all the different Levels at which an mCaptcha system operates
Implementations
impl Defense
[src]
pub fn get_difficulty(&self) -> u32
[src]
! Difficulty is calculated as:
! rust ! let difficulty = u128::max_value() - u128::max_value() / difficulty_factor; !
! The higher the difficulty_factor
, the higher the difficulty.
Get difficulty factor of current level of defense
pub fn tighten_up(&mut self)
[src]
tighten up defense. Increases defense level by a factor of one. When defense is at max level, calling this method will have no effect
pub fn loosen_up(&mut self)
[src]
Loosen up defense. Decreases defense level by a factor of one. When defense is at the lowest level, calling this method will have no effect.
pub fn max_defense(&mut self)
[src]
Set defense to maximum level
pub fn min_defense(&mut self)
[src]
Set defense to minimum level
pub fn visitor_threshold(&self) -> u32
[src]
Get current level's visitor threshold
Trait Implementations
impl Clone for Defense
[src]
impl Debug for Defense
[src]
impl<'de> Deserialize<'de> for Defense
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
impl PartialEq<Defense> for Defense
[src]
impl Serialize for Defense
[src]
fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer,
[src]
__S: Serializer,
impl StructuralPartialEq for Defense
[src]
Auto Trait Implementations
impl RefUnwindSafe for Defense
[src]
impl Send for Defense
[src]
impl Sync for Defense
[src]
impl Unpin for Defense
[src]
impl UnwindSafe for Defense
[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,