From 3d2d69345886dc0604cf10635a5c30d5f6f4933f Mon Sep 17 00:00:00 2001 From: realaravinth Date: Sat, 10 Apr 2021 12:22:31 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20gh-pages=20from=20=20@=2023bf3?= =?UTF-8?q?9b328b2b04c4971b3da8412778538b05d60=20=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cache_buster/filemap/index.html | 14 +- cache_buster/filemap/sidebar-items.js | 2 +- cache_buster/filemap/struct.Files.html | 30 ++-- cache_buster/index.html | 11 +- .../processor/enum.BusterBuilderError.html | 12 +- cache_buster/processor/index.html | 34 ++++- cache_buster/processor/sidebar-items.js | 2 +- cache_buster/processor/struct.Buster.html | 15 +- .../processor/struct.BusterBuilder.html | 13 +- cache_buster/sidebar-items.js | 2 +- search-index.js | 2 +- src/cache_buster/filemap.rs.html | 62 +++++++- src/cache_buster/lib.rs.html | 10 +- src/cache_buster/processor.rs.html | 136 +++++++++++++++--- 14 files changed, 279 insertions(+), 66 deletions(-) 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]