pub enum FileSink {
Dir {
base_path: PathBuf,
},
Rgssad {
writer: Writer<BufWriter<File>>,
},
}
Expand description
An abstraction of a file sink over dir and rgssad output formats.
Variants§
Implementations§
Source§impl FileSink
impl FileSink
Sourcepub fn new_dir(path: &Path, overwrite: bool) -> Result<Self>
pub fn new_dir(path: &Path, overwrite: bool) -> Result<Self>
Create a new file sink for a directory
Sourcepub fn new_rgssad(path: &Path, overwrite: bool) -> Result<Self>
pub fn new_rgssad(path: &Path, overwrite: bool) -> Result<Self>
Create a new file sink for an rgssad file
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FileSink
impl RefUnwindSafe for FileSink
impl Send for FileSink
impl Sync for FileSink
impl Unpin for FileSink
impl UnwindSafe for FileSink
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