pub struct Fm2ExportOpts {
pub rerecord_count: u64,
pub author: Option<String>,
pub rom_filename: Option<String>,
pub rom_checksum_md5: Option<String>,
pub fourscore: bool,
}Expand description
Fields§
§rerecord_count: u64Value to emit for the rerecordCount header.
Author to emit as a comment author <name> line, if any.
rom_filename: Option<String>Value to emit for the romFilename header, if any.
rom_checksum_md5: Option<String>Value to emit for the romChecksum header, if any.
fourscore: boolEmit fourscore 1 and four pad columns per line when true. The
extra pads (3 and 4) are always released, since FrameInput models
only two controllers.
Trait Implementations§
Source§impl Clone for Fm2ExportOpts
impl Clone for Fm2ExportOpts
Source§fn clone(&self) -> Fm2ExportOpts
fn clone(&self) -> Fm2ExportOpts
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for Fm2ExportOpts
impl Debug for Fm2ExportOpts
Source§impl Default for Fm2ExportOpts
impl Default for Fm2ExportOpts
Source§fn default() -> Fm2ExportOpts
fn default() -> Fm2ExportOpts
Returns the “default value” for a type. Read more
Source§impl PartialEq for Fm2ExportOpts
impl PartialEq for Fm2ExportOpts
impl Eq for Fm2ExportOpts
impl StructuralPartialEq for Fm2ExportOpts
Auto Trait Implementations§
impl Freeze for Fm2ExportOpts
impl RefUnwindSafe for Fm2ExportOpts
impl Send for Fm2ExportOpts
impl Sync for Fm2ExportOpts
impl Unpin for Fm2ExportOpts
impl UnsafeUnpin for Fm2ExportOpts
impl UnwindSafe for Fm2ExportOpts
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