[][src]Struct sciter::host::Archive

pub struct Archive(_);

Sciter compressed archive.

An archive is produced by packfolder tool (from SDK) that creates a single blob with compressed resources. It allows to use the same resource pack uniformly across different platforms.

For example, app resource files (HTML/CSS/scripts) can be stored in an assets folder that can be packed into a single archive by calling packfolder.exe assets target/assets.rc -binary. And later it can be accessed via the Archive API explicitly:

This example is not tested
let archived = include_bytes!("target/assets.rc");
let assets = sciter::host::Archive::open(archived).expect("Unable to load archive.");

// access `assets/index.htm`
let html_data = assets.get("index.htm").unwrap();

or implicitly via the this://app/ URL after registering the archive via Window::archive_handler:

This example is not tested

let archived = include_bytes!("target/assets.rc");
let mut frame = sciter::Window::new();
frame.archive_handler(archived).expect("Unable to load archive");
frame.load("this://app/index.htm");

Implementations

impl Archive[src]

pub fn open(archived: &[u8]) -> Result<Self>[src]

Open an archive blob.

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

Get an archive item.

Given a path, returns a reference to the contents of an archived item.

Trait Implementations

impl Drop for Archive[src]

Close the archive.

Auto Trait Implementations

impl RefUnwindSafe for Archive

impl !Send for Archive

impl !Sync for Archive

impl Unpin for Archive

impl UnwindSafe for Archive

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> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.