pub enum TargetImageFormat {
Gba,
}Expand description
Complete-image format produced by a target-specific builder.
Variants§
Gba
Game Boy Advance .gba ROM image.
Trait Implementations§
Source§impl Clone for TargetImageFormat
impl Clone for TargetImageFormat
Source§fn clone(&self) -> TargetImageFormat
fn clone(&self) -> TargetImageFormat
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TargetImageFormat
impl Debug for TargetImageFormat
Source§impl PartialEq for TargetImageFormat
impl PartialEq for TargetImageFormat
Source§fn eq(&self, other: &TargetImageFormat) -> bool
fn eq(&self, other: &TargetImageFormat) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for TargetImageFormat
impl Eq for TargetImageFormat
impl StructuralPartialEq for TargetImageFormat
Auto Trait Implementations§
impl Freeze for TargetImageFormat
impl RefUnwindSafe for TargetImageFormat
impl Send for TargetImageFormat
impl Sync for TargetImageFormat
impl Unpin for TargetImageFormat
impl UnsafeUnpin for TargetImageFormat
impl UnwindSafe for TargetImageFormat
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