Struct cache_buster::filemap::Files[][src]

pub struct Files {
    pub map: HashMap<String, String>,
    // some fields omitted
}

Filemap struct

maps original names to generated names

Fields

map: HashMap<String, String>

filemap<original-path, modified-path>

Implementations

impl Files[src]

pub fn new(base_dir: &str) -> Self[src]

Initialize map

pub fn get<'a>(&'a self, path: &'a str) -> Option<&'a str>[src]

Get relative file path

If the modified filename path is ./prod/test.randomhash.svg, it will output /test.randomhash.svg. For full path, see get_full_path.

pub fn get_full_path<'a>(&'a self, path: &'a str) -> Option<&'a String>[src]

Get file path

If the modified filename path is ./prod/test.randomhash.svg, it will output /prod/test.randomhash.svg. For relative path, see get.

pub fn add(&mut self, k: String, v: String) -> Result<(), &'static str>[src]

Create file map: map original path to modified paths

pub fn to_env(&self)[src]

This crate uses compile-time environment variables to transfer data to the main program. This funtction sets that variable

pub fn load() -> Self[src]

Load filemap in main program. Should be called from main program

Trait Implementations

impl Clone for Files[src]

impl Debug for Files[src]

impl<'de> Deserialize<'de> for Files[src]

impl PartialEq<Files> for Files[src]

impl Serialize for Files[src]

impl StructuralPartialEq for Files[src]

Auto Trait Implementations

impl RefUnwindSafe for Files[src]

impl Send for Files[src]

impl Sync for Files[src]

impl Unpin for Files[src]

impl UnwindSafe for Files[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.