Struct cached_path::Options

source ·
pub struct Options {
    pub subdir: Option<String>,
    pub extract: bool,
}
Expand description

Options to use with Cache::cached_path_with_options.

Fields§

§subdir: Option<String>

An optional subdirectory (relative to the cache root) to cache the resource in.

§extract: bool

Automatically extract the resource, assuming the resource is an archive.

Implementations§

Examples found in repository?
src/cache.rs (line 359)
354
355
356
357
358
359
360
361
    pub fn cached_path_in_subdir(
        &self,
        resource: &str,
        subdir: Option<&str>,
    ) -> Result<PathBuf, Error> {
        let options = Options::new(subdir, false);
        self.cached_path_with_options(resource, &options)
    }

The the cache subdirectory to use.

Treat the resource as an archive and try to extract it.

Trait Implementations§

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.
Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more