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

pub struct HashCache(_);

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<Cache> for HashCache[src]

cache a PoWConfig

type Result = MessageResult<Cache>

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

impl Handler<DeleteString> for HashCache[src]

Delte a PoWConfig

type Result = MessageResult<DeleteString>

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

impl Handler<Retrive> for HashCache[src]

Retrive PoW difficulty_factor for a PoW string

type Result = MessageResult<Retrive>

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>,