userust_embed::RustEmbed;#[derive(RustEmbed)]#[folder="examples/public/"]structAssets;/// Prevent attempts to access files outside of the embedded folder.
/// This is mainly a concern when running in debug mode, since that loads from
/// the file system at runtime.
#[test]fnpath_traversal_attack_fails(){assert!(Assets::get("../basic.rs").is_none());}