pub trait FromStrAndCache: Sized {
    type Err;

    fn from_str<CRL>(cache: CRL, s: &str) -> Result<Self, Self::Err>
    where
        CRL: AsRef<Cache> + Send + Sync
; }
Available on crate feature cache only.

Required Associated Types

Required Methods

Implementors