Struct install_framework_base::cache::Cache[][src]

pub struct Cache<TError: Error> { /* fields omitted */ }

Implementations

impl<TError: Error> Cache<TError>[src]

pub fn new() -> Cache<TError>[src]

pub fn get_path(&mut self, path: &Path) -> Result<PathBuf, TError::ErrorType>[src]

pub fn insert<TVal: Into<OsString>>(&mut self, resid: usize, value: TVal)[src]

pub fn get(&self, resid: usize) -> Result<&OsString, TError::ErrorType>[src]

pub fn parse_string(&self, from: &str) -> Result<OsString, TError::ErrorType>[src]

Auto Trait Implementations

impl<TError> RefUnwindSafe for Cache<TError> where
    TError: RefUnwindSafe

impl<TError> Send for Cache<TError> where
    TError: Send

impl<TError> Sync for Cache<TError> where
    TError: Sync

impl<TError> Unpin for Cache<TError> where
    TError: Unpin

impl<TError> UnwindSafe for Cache<TError> where
    TError: UnwindSafe

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> Instrument for T[src]

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

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