From 44cd8e3f29784410f5494942a13315ee6f4469eb Mon Sep 17 00:00:00 2001 From: realaravinth Date: Thu, 1 Jul 2021 17:09:57 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20gh-pages=20from=20=20@=2043d97?= =?UTF-8?q?0980fedd40253d01f3e38cc04a7ae12754e=20=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mcaptcha/data/enum.SystemGroup.html | 10 ++++---- mcaptcha/data/index.html | 2 +- mcaptcha/data/struct.Data.html | 6 ++--- mcaptcha/data/type.Mailer.html | 2 +- mcaptcha/email/verification/index.html | 2 +- mcaptcha/struct.Data.html | 6 ++--- search-index.js | 4 +-- src/mcaptcha/data.rs.html | 32 +++++++++++++++++------- src/mcaptcha/email/verification.rs.html | 8 ++++-- src/tests_migrate/data.rs.html | 32 +++++++++++++++++------- tests_migrate/data/enum.SystemGroup.html | 10 ++++---- tests_migrate/data/index.html | 2 +- tests_migrate/data/struct.Data.html | 6 ++--- tests_migrate/data/type.Mailer.html | 2 +- tests_migrate/struct.Data.html | 6 ++--- 15 files changed, 81 insertions(+), 49 deletions(-) diff --git a/mcaptcha/data/enum.SystemGroup.html b/mcaptcha/data/enum.SystemGroup.html index c46d2db5..5f6af70e 100644 --- a/mcaptcha/data/enum.SystemGroup.html +++ b/mcaptcha/data/enum.SystemGroup.html @@ -1,7 +1,7 @@ SystemGroup in mcaptcha::data - Rust

Enum mcaptcha::data::SystemGroup[][src]

pub enum SystemGroup {
+                Change settings

Enum mcaptcha::data::SystemGroup[][src]

pub enum SystemGroup {
     Embedded(System<HashCache, EmbeddedMaster>),
     Redis(System<RedisCache, RedisMaster>),
 }

Represents mCaptcha cache and master system. @@ -9,10 +9,10 @@ When Redis is configured, SystemGroup::Embedded is used

Variants

-
Embedded(System<HashCache, EmbeddedMaster>)
Redis(System<RedisCache, RedisMaster>)

Implementations

impl SystemGroup[src]

pub async fn get_pow(&self, id: String) -> Option<PoWConfig>[src]

utility function to get difficulty factor of site id and cache it

-

pub async fn verify_pow(&self, work: Work) -> CaptchaResult<String>[src]

utility function to verify [Work]

-

pub async fn validate_verification_tokens(
    &self,
    msg: VerifyCaptchaResult
) -> CaptchaResult<bool>
[src]

utility function to validate verification tokens

-

fn new_system<A: Save, B: MasterTrait>(m: Addr<B>, c: Addr<A>) -> System<A, B>[src]

async fn new() -> Self[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]