wasmer_package::package

Struct Package

Source
pub struct Package { /* private fields */ }
Expand description

A Wasmer package that will be lazily loaded from disk.

Implementations§

Source§

impl Package

Source

pub fn from_tarball_file( path: impl AsRef<Path>, ) -> Result<Self, WasmerPackageError>

Load a Package from a *.tar.gz file on disk.

§Implementation Details

This will unpack the tarball to a temporary directory on disk and use memory-mapped files in order to reduce RAM usage.

Source

pub fn from_tarball_file_with_strictness( path: impl AsRef<Path>, strictness: Strictness, ) -> Result<Self, WasmerPackageError>

Load a Package from a *.tar.gz file on disk.

§Implementation Details

This will unpack the tarball to a temporary directory on disk and use memory-mapped files in order to reduce RAM usage.

Source

pub fn from_tarball(tarball: impl BufRead) -> Result<Self, WasmerPackageError>

Load a package from a *.tar.gz archive.

Source

pub fn from_tarball_with_strictness( tarball: impl BufRead, strictness: Strictness, ) -> Result<Self, WasmerPackageError>

Load a package from a *.tar.gz archive.

Source

pub fn from_manifest( wasmer_toml: impl AsRef<Path>, ) -> Result<Self, WasmerPackageError>

Load a package from a wasmer.toml manifest on disk.

Source

pub fn from_manifest_with_strictness( wasmer_toml: impl AsRef<Path>, strictness: Strictness, ) -> Result<Self, WasmerPackageError>

Load a package from a wasmer.toml manifest on disk.

Source

pub fn from_json_manifest(manifest: PathBuf) -> Result<Self, WasmerPackageError>

(Re)loads a package from a manifest.json file which was created as the result of calling Container::unpack

Source

pub fn from_json_manifest_with_strictness( manifest: PathBuf, strictness: Strictness, ) -> Result<Self, WasmerPackageError>

(Re)loads a package from a manifest.json file which was created as the result of calling Container::unpack

Source

pub fn from_in_memory( manifest: WasmerManifest, volumes: BTreeMap<String, MemoryVolume>, atoms: BTreeMap<String, (Option<String>, OwnedBuffer)>, metadata: MemoryVolume, strictness: Strictness, ) -> Result<Self, WasmerPackageError>

Create a Package from an in-memory representation.

Source

pub fn webc_hash(&self) -> Option<[u8; 32]>

Returns the Sha256 has of the webc represented by this Package

Source

pub fn manifest(&self) -> &WebcManifest

Get the WEBC manifest.

Source

pub fn atoms(&self) -> &BTreeMap<String, OwnedBuffer>

Get all atoms in this package.

Source

pub fn volumes( &self, ) -> impl Iterator<Item = &Arc<dyn WasmerPackageVolume + Sync + Send + 'static>>

Returns all volumes in this package

Source

pub fn serialize(&self) -> Result<Bytes, Error>

Serialize the package to a *.webc v2 file, ignoring errors due to missing files.

Trait Implementations§

Source§

impl Debug for Package

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl From<Package> for Container

Source§

fn from(value: Package) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Pointable for T

Source§

const ALIGN: usize = _

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.