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§
Implementations§
Source§impl FileEntryIter
impl FileEntryIter
Sourcepub fn new<P>(path: P) -> Result<Self>
pub fn new<P>(path: P) -> Result<Self>
Create a new iter from a path.
This will determine whether the path is a dir or an rgssad.
Sourcepub fn new_walkdir_path<P>(path: P) -> Result<Self>
pub fn new_walkdir_path<P>(path: P) -> Result<Self>
Create a new iter from the given dir path.
Sourcepub fn new_rgssad_path<P>(path: P) -> Result<Self>
pub fn new_rgssad_path<P>(path: P) -> Result<Self>
Create a new iter from the given rgssad path.
Sourcepub fn new_rgssad_file(file: File, game_kind: GameKind) -> Result<Self>
pub fn new_rgssad_file(file: File, game_kind: GameKind) -> Result<Self>
Create a new iter from the given rgssad file.
Sourcepub fn next_file_entry(&mut self) -> Result<Option<FileEntry<'_>>>
pub fn next_file_entry(&mut self) -> Result<Option<FileEntry<'_>>>
Get the next file entry.
Auto Trait Implementations§
impl Freeze for FileEntryIter
impl !RefUnwindSafe for FileEntryIter
impl Send for FileEntryIter
impl Sync for FileEntryIter
impl Unpin for FileEntryIter
impl !UnwindSafe for FileEntryIter
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more