pub struct EmbeddedAssets(/* private fields */);
Expand description
Represent a directory of assets that are compressed and embedded.
This is the compile time generation of tauri_utils::assets::Assets
from a directory. Assets
from the directory are added as compiler dependencies by dummy including the original,
uncompressed assets.
The assets are compressed during this runtime, and can only be represented as a TokenStream
through ToTokens
. The generated code is meant to be injected into an application to include
the compressed assets in that application’s binary.
Implementations§
Source§impl EmbeddedAssets
impl EmbeddedAssets
Sourcepub fn new(
path: &Path,
options: AssetOptions,
) -> Result<Self, EmbeddedAssetsError>
pub fn new( path: &Path, options: AssetOptions, ) -> Result<Self, EmbeddedAssetsError>
Compress a directory of assets, ready to be generated into a tauri_utils::assets::Assets
.
Sourcepub fn load_paths(
paths: Vec<PathBuf>,
options: AssetOptions,
) -> Result<Self, EmbeddedAssetsError>
pub fn load_paths( paths: Vec<PathBuf>, options: AssetOptions, ) -> Result<Self, EmbeddedAssetsError>
Compress a list of files and directories.
Trait Implementations§
Source§impl Default for EmbeddedAssets
impl Default for EmbeddedAssets
Source§fn default() -> EmbeddedAssets
fn default() -> EmbeddedAssets
Returns the “default value” for a type. Read more
Source§impl ToTokens for EmbeddedAssets
impl ToTokens for EmbeddedAssets
Source§fn to_tokens(&self, tokens: &mut TokenStream)
fn to_tokens(&self, tokens: &mut TokenStream)
Source§fn to_token_stream(&self) -> TokenStream
fn to_token_stream(&self) -> TokenStream
Source§fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
Auto Trait Implementations§
impl Freeze for EmbeddedAssets
impl RefUnwindSafe for EmbeddedAssets
impl Send for EmbeddedAssets
impl Sync for EmbeddedAssets
impl Unpin for EmbeddedAssets
impl UnwindSafe for EmbeddedAssets
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more