Struct ba2::fo4::Chunk

source ·
pub struct Chunk<'bytes> {
    pub mips: Option<RangeInclusive<u16>>,
    /* private fields */
}
Expand description

Represents a chunk of a file within the FO4 virtual filesystem.

Fields§

§mips: Option<RangeInclusive<u16>>

Implementations§

source§

impl<'bytes> Chunk<'bytes>

source

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

source

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

source

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

source

pub fn is_empty(&self) -> bool

source

pub fn len(&self) -> usize

source

pub fn new() -> Self

source§

impl<'bytes> Chunk<'bytes>

source

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

source

pub fn decompress(&self, options: &CompressionOptions) -> Result<Chunk<'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> Chunk<'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 Chunk<'bytes>

source§

fn clone(&self) -> Chunk<'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 Chunk<'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 Chunk<'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 Chunk<'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 Chunk<'bytes>

source§

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

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

impl<'bytes> Default for Chunk<'bytes>

source§

fn default() -> Chunk<'bytes>

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

impl<'bytes> FromIterator<Chunk<'bytes>> for File<'bytes>

source§

fn from_iter<T>(iter: T) -> Self
where T: IntoIterator<Item = Chunk<'bytes>>,

Creates a value from an iterator. Read more

Auto Trait Implementations§

§

impl<'bytes> RefUnwindSafe for Chunk<'bytes>

§

impl<'bytes> Send for Chunk<'bytes>

§

impl<'bytes> Sync for Chunk<'bytes>

§

impl<'bytes> Unpin for Chunk<'bytes>

§

impl<'bytes> UnwindSafe for Chunk<'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.