[][src]Crate warp_embed

warp-embed

Serve embedded file with warp

use warp::Filter;
use rust_embed::RustEmbed;

#[derive(RustEmbed)]
#[folder = "data"]
struct Data;

let data_serve = warp_embed::embed(&Data);

Structs

EmbedConfig

Embed serving configuration

Functions

embed

Creates a Filter that serves embedded files at the base path joined by the request path.

embed_one

Creates a Filter that always serves one embedded file

embed_with_config

Creates a Filter that serves embedded files at the base path joined by the request path with configuration.