Struct ba2::tes4::Archive

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

Represents the TES4 revision of the bsa format.

Implementations§

source§

impl<'bytes> Archive<'bytes>

source

pub fn clear(&mut self)

source

pub fn get<K>(&self, key: &K) -> Option<&Directory<'bytes>>

source

pub fn get_key_value<K>( &self, key: &K ) -> Option<(&Key<'bytes>, &Directory<'bytes>)>

source

pub fn get_mut<K>(&mut self, key: &K) -> Option<&mut Directory<'bytes>>

source

pub fn insert<K>( &mut self, key: K, value: Directory<'bytes> ) -> Option<Directory<'bytes>>
where K: Into<Key<'bytes>>,

source

pub fn is_empty(&self) -> bool

source

pub fn iter(&self) -> impl Iterator<Item = (&Key<'bytes>, &Directory<'bytes>)>

source

pub fn iter_mut( &mut self ) -> impl Iterator<Item = (&Key<'bytes>, &mut Directory<'bytes>)>

source

pub fn keys(&self) -> impl Iterator<Item = &Key<'bytes>>

source

pub fn len(&self) -> usize

source

pub fn new() -> Self

source

pub fn remove<K>(&mut self, key: &K) -> Option<Directory<'bytes>>

source

pub fn remove_entry<K>( &mut self, key: &K ) -> Option<(Key<'bytes>, Directory<'bytes>)>

source

pub fn values(&self) -> impl Iterator<Item = &Directory<'bytes>>

source

pub fn values_mut(&mut self) -> impl Iterator<Item = &mut Directory<'bytes>>

source§

impl<'bytes> Archive<'bytes>

source

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

Trait Implementations§

source§

impl<'bytes> Clone for Archive<'bytes>

source§

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

source§

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

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

impl<'bytes> Default for Archive<'bytes>

source§

fn default() -> Archive<'bytes>

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

impl<'bytes> FromIterator<(Key<'bytes>, Directory<'bytes>)> for Archive<'bytes>

source§

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

Creates a value from an iterator. Read more
source§

impl<'bytes, 'this> IntoIterator for &'this Archive<'bytes>

§

type Item = <&'this BTreeMap<Key<'bytes>, Directory<'bytes>> as IntoIterator>::Item

The type of the elements being iterated over.
§

type IntoIter = <&'this BTreeMap<Key<'bytes>, Directory<'bytes>> as IntoIterator>::IntoIter

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<'bytes, 'this> IntoIterator for &'this mut Archive<'bytes>

§

type Item = <&'this mut BTreeMap<Key<'bytes>, Directory<'bytes>> as IntoIterator>::Item

The type of the elements being iterated over.
§

type IntoIter = <&'this mut BTreeMap<Key<'bytes>, Directory<'bytes>> as IntoIterator>::IntoIter

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<'bytes> IntoIterator for Archive<'bytes>

§

type Item = <BTreeMap<Key<'bytes>, Directory<'bytes>> as IntoIterator>::Item

The type of the elements being iterated over.
§

type IntoIter = <BTreeMap<Key<'bytes>, Directory<'bytes>> as IntoIterator>::IntoIter

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl Reader<&File> for Archive<'static>

§

type Error = Error

§

type Item = (Archive<'static>, Options)

source§

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

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

impl Reader<&Path> for Archive<'static>

§

type Error = Error

§

type Item = (Archive<'static>, Options)

source§

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

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

impl<'bytes> Reader<Borrowed<'bytes>> for Archive<'bytes>

§

type Error = Error

§

type Item = (Archive<'bytes>, Options)

source§

fn read(source: Borrowed<'bytes>) -> Result<Self::Item>

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

impl<'bytes> Reader<Copied<'bytes>> for Archive<'static>

§

type Error = Error

§

type Item = (Archive<'static>, Options)

source§

fn read(source: Copied<'bytes>) -> Result<Self::Item>

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

Auto Trait Implementations§

§

impl<'bytes> RefUnwindSafe for Archive<'bytes>

§

impl<'bytes> Send for Archive<'bytes>

§

impl<'bytes> Sync for Archive<'bytes>

§

impl<'bytes> Unpin for Archive<'bytes>

§

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