rpgmxp_tool::commands::extract_assets::file_entry_iter

Enum FileEntryIter

Source
pub enum FileEntryIter {
    WalkDir {
        input_path: PathBuf,
        iter: IntoIter,
        game_kind: GameKind,
    },
    Rgssad {
        reader: Reader<File>,
        game_kind: GameKind,
    },
}
Expand description

A lending iter over files.

Variants§

§

WalkDir

Fields

§input_path: PathBuf
§iter: IntoIter
§game_kind: GameKind
§

Rgssad

Fields

§reader: Reader<File>
§game_kind: GameKind

Implementations§

Source§

impl FileEntryIter

Source

pub fn new<P>(path: P) -> Result<Self>
where P: AsRef<Path>,

Create a new iter from a path.

This will determine whether the path is a dir or an rgssad.

Source

pub fn new_walkdir_path<P>(path: P) -> Result<Self>
where P: AsRef<Path>,

Create a new iter from the given dir path.

Source

pub fn new_rgssad_path<P>(path: P) -> Result<Self>
where P: AsRef<Path>,

Create a new iter from the given rgssad path.

Source

pub fn new_rgssad_file(file: File, game_kind: GameKind) -> Result<Self>

Create a new iter from the given rgssad file.

Source

pub fn next_file_entry(&mut self) -> Result<Option<FileEntry<'_>>>

Get the next file entry.

Source

pub fn game_kind(&self) -> GameKind

Get the determined game kind

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