pub trait StrExt: Sized {
    fn parse_cached<CRL, F: FromStrAndCache>(
        &self,
        cache: CRL
    ) -> Result<F, F::Err>
    where
        CRL: AsRef<Cache> + Send + Sync
; }
Available on crate feature cache only.

Required Methods

Implementations on Foreign Types

Available on crate feature cache only.

Implementors