Struct ba2::tes4::File

source ·
pub struct File<'bytes> { /* private fields */ }
Expand description

Represents a file within the TES4 virtual filesystem.

Implementations§

source§

impl<'bytes> File<'bytes>

source

pub fn as_bytes(&self) -> &[u8]

source

pub fn as_ptr(&self) -> *const u8

source

pub fn into_owned(self) -> File<'static>

source

pub fn is_empty(&self) -> bool

source

pub fn len(&self) -> usize

source

pub fn new() -> Self

source§

impl<'bytes> File<'bytes>

source

pub fn compress(&self, options: &CompressionOptions) -> Result<File<'static>>

source

pub fn decompress(&self, options: &CompressionOptions) -> Result<File<'static>>

source

pub fn decompressed_len(&self) -> Option<usize>

source

pub fn is_compressed(&self) -> bool

source

pub fn is_decompressed(&self) -> bool

source

pub fn write<Out>( &self, stream: &mut Out, options: &CompressionOptions ) -> Result<()>
where Out: ?Sized + Write,

source§

impl<'bytes> File<'bytes>

source

pub fn compress_into( &self, out: &mut Vec<u8>, options: &CompressionOptions ) -> Result<()>

source

pub fn decompress_into( &self, out: &mut Vec<u8>, options: &CompressionOptions ) -> Result<()>

Trait Implementations§

source§

impl<'bytes> Clone for File<'bytes>

source§

fn clone(&self) -> File<'bytes>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'bytes> CompressableFrom<&'bytes [u8]> for File<'bytes>

source§

fn from_compressed(value: &'bytes [u8], decompressed_len: usize) -> Self

Makes a compressed instance of Self using the given data.
source§

fn from_decompressed(value: &'bytes [u8]) -> Self

Makes a decompressed instance of Self using the given data.
source§

impl<'bytes, const N: usize> CompressableFrom<&'bytes [u8; N]> for File<'bytes>

source§

fn from_compressed(value: &'bytes [u8; N], decompressed_len: usize) -> Self

Makes a compressed instance of Self using the given data.
source§

fn from_decompressed(value: &'bytes [u8; N]) -> Self

Makes a decompressed instance of Self using the given data.
source§

impl CompressableFrom<Box<[u8]>> for File<'static>

source§

fn from_compressed(value: Box<[u8]>, decompressed_len: usize) -> Self

Makes a compressed instance of Self using the given data.
source§

fn from_decompressed(value: Box<[u8]>) -> Self

Makes a decompressed instance of Self using the given data.
source§

impl<'bytes> Debug for File<'bytes>

source§

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

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

impl<'bytes> Default for File<'bytes>

source§

fn default() -> File<'bytes>

Returns the “default value” for a type. Read more
source§

impl ReaderWithOptions<&File> for File<'static>

§

type Error = Error

§

type Item = File<'static>

§

type Options = ReadOptions

source§

fn read(source: &File, options: &Self::Options) -> Result<Self::Item>

Reads an instance of Self::Item from the given source, using the given options.
source§

impl ReaderWithOptions<&Path> for File<'static>

§

type Error = Error

§

type Item = File<'static>

§

type Options = ReadOptions

source§

fn read(source: &Path, options: &Self::Options) -> Result<Self::Item>

Reads an instance of Self::Item from the given source, using the given options.
source§

impl<'bytes> ReaderWithOptions<Borrowed<'bytes>> for File<'bytes>

§

type Error = Error

§

type Item = File<'bytes>

§

type Options = ReadOptions

source§

fn read(source: Borrowed<'bytes>, options: &Self::Options) -> Result<Self::Item>

Reads an instance of Self::Item from the given source, using the given options.
source§

impl<'bytes> ReaderWithOptions<Copied<'bytes>> for File<'static>

§

type Error = Error

§

type Item = File<'static>

§

type Options = ReadOptions

source§

fn read(source: Copied<'bytes>, options: &Self::Options) -> Result<Self::Item>

Reads an instance of Self::Item from the given source, using the given options.

Auto Trait Implementations§

§

impl<'bytes> RefUnwindSafe for File<'bytes>

§

impl<'bytes> Send for File<'bytes>

§

impl<'bytes> Sync for File<'bytes>

§

impl<'bytes> Unpin for File<'bytes>

§

impl<'bytes> UnwindSafe for File<'bytes>

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> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

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

§

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>,

§

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.