diff --git a/cache_buster/filemap/index.html b/cache_buster/filemap/index.html index 35bc695..839a152 100644 --- a/cache_buster/filemap/index.html +++ b/cache_buster/filemap/index.html @@ -1,6 +1,16 @@ cache_buster::filemap - Rust

Module cache_buster::filemap[][src]

Structs

-
Files
+ Change settings

Module cache_buster::filemap[][src]

Module describing runtime compoenet for fetching modified filenames

+

Add the following tou your program to load the filemap during compiletime:

+ +
+use cache_buster::Files;
+
+fn main(){
+   let files = Files::load();
+}
+

Structs

+
Files

Filemap struct

+
\ No newline at end of file diff --git a/cache_buster/filemap/sidebar-items.js b/cache_buster/filemap/sidebar-items.js index 64c9bff..a879602 100644 --- a/cache_buster/filemap/sidebar-items.js +++ b/cache_buster/filemap/sidebar-items.js @@ -1 +1 @@ -initSidebarItems({"struct":[["Files",""]]}); \ No newline at end of file +initSidebarItems({"struct":[["Files","Filemap struct"]]}); \ No newline at end of file diff --git a/cache_buster/filemap/struct.Files.html b/cache_buster/filemap/struct.Files.html index dbab46a..90e39db 100644 --- a/cache_buster/filemap/struct.Files.html +++ b/cache_buster/filemap/struct.Files.html @@ -1,19 +1,31 @@ cache_buster::filemap::Files - Rust

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

pub struct Files {
+                Change settings

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

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

- Fields

map: HashMap<String, String>

Implementations

impl Files[src]

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

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

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

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

pub fn to_env(&self)[src]

pub fn load() -> Self[src]

Trait Implementations

impl Clone for Files[src]

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

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl Serialize for Files[src]

impl StructuralPartialEq for Files[src]

Auto Trait Implementations

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]