pub struct BasicPatchOptions { /* private fields */ }Expand description
Represents the basic options for a patch operation, only requiring the ROM data and the patch location.
Implementations§
Source§impl BasicPatchOptions
impl BasicPatchOptions
Sourcepub fn new(romdata: RomData, patchloc: String) -> BasicPatchOptions
pub fn new(romdata: RomData, patchloc: String) -> BasicPatchOptions
Creates a new BasicPatchOptions with the ROM data and the patch location.
Trait Implementations§
Source§impl Clone for BasicPatchOptions
impl Clone for BasicPatchOptions
Source§fn clone(&self) -> BasicPatchOptions
fn clone(&self) -> BasicPatchOptions
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 moreAuto Trait Implementations§
impl Freeze for BasicPatchOptions
impl RefUnwindSafe for BasicPatchOptions
impl Send for BasicPatchOptions
impl Sync for BasicPatchOptions
impl Unpin for BasicPatchOptions
impl UnwindSafe for BasicPatchOptions
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