Struct m_captcha::cache::hashcache::HashCache[][src]

pub struct HashCache { /* fields omitted */ }

cache datastructure implementing Save

Trait Implementations

impl Actor for HashCache[src]

type Context = Context<Self>

Actor execution context type

impl Clone for HashCache[src]

impl Default for HashCache[src]

impl Handler<CachePoW> for HashCache[src]

cache a PoWConfig

type Result = MessageResult<CachePoW>

The type of value that this handler will return. Read more

impl Handler<CacheResult> for HashCache[src]

cache PoW result

type Result = MessageResult<CacheResult>

The type of value that this handler will return. Read more

impl Handler<DeleteCaptchaResult> for HashCache[src]

Delte a PoWConfig

type Result = MessageResult<DeleteCaptchaResult>

The type of value that this handler will return. Read more

impl Handler<DeletePoW> for HashCache[src]

Delte a PoWConfig

type Result = MessageResult<DeletePoW>

The type of value that this handler will return. Read more

impl Handler<RetrivePoW> for HashCache[src]

Retrive PoW difficulty_factor for a PoW string

type Result = MessageResult<RetrivePoW>

The type of value that this handler will return. Read more

impl Handler<VerifyCaptchaResult> for HashCache[src]

Retrive PoW difficulty_factor for a PoW string

type Result = MessageResult<VerifyCaptchaResult>

The type of value that this handler will return. Read more

impl Save for HashCache[src]

Auto Trait Implementations

impl RefUnwindSafe for HashCache[src]

impl Send for HashCache[src]

impl Sync for HashCache[src]

impl Unpin for HashCache[src]

impl UnwindSafe for HashCache[src]

Blanket Implementations

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

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,