Struct PackageEntry

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

Represents a file entry in a Package.

These entries consist basically only of the file’s path within the package (here called an inner_path), and a reference to the file’s content.

Implementations§

Source§

impl PackageEntry

Source

pub fn from_file<S: AsRef<str>, P: AsRef<Path>>( inner_path: S, path: P, ) -> PackageEntry

Constructs an PackageEntry from the given inner_path and file at the specified path.

  • inner_path - path under which the file will be stored within the Package.
  • path - path to the file that will be read to populate this entry’s content.
Source

pub fn from_memory_mapped_file<S: AsRef<str>>( inner_path: S, mmap: Rc<Mmap>, offset: u64, length: u64, ) -> PackageEntry

Constructs an PackageEntry from the given inner_path, memory map, offset and length

  • inner_path - path under which the file will be stored within the Package.
  • mmap - memory map of the file from which the file’s content will be read.
  • offset - offset to the file’s content within the memory mapped file.
  • length - length of the file’s content within the memory mapped file.
Source

pub fn from_string<S: AsRef<str>, C: AsRef<str> + Into<Vec<u8>>>( inner_path: S, content: C, ) -> PackageEntry

Constructs an PackageEntry from the given inner_path and text content.

  • inner_path - path under which the file will be stored within the Package.
  • content - textual content of the file.
Source

pub fn from_byte_array<S: AsRef<str>>( inner_path: S, content: Vec<u8>, ) -> PackageEntry

Constructs an PackageEntry from the given inner_path and binary content.

  • inner_path - path under which the file will be stored within the Package.
  • content - binary content of the file.
Source

pub fn inner_path(&self) -> &str

Returns the inner_path of this entry.

Source

pub fn content(&self) -> Result<Vec<u8>, Error>

Returns a view of this entry’s content as bytes.

Trait Implementations§

Source§

impl Debug for PackageEntry

Source§

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

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

impl Display for PackageEntry

Source§

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

Formats the value using the given formatter. Read more

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> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
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.