pub enum StmFileType {
Song,
Module,
Other(u8),
}Expand description
STM file type field (offset 0x1D).
Variants§
Trait Implementations§
Source§impl Clone for StmFileType
impl Clone for StmFileType
Source§fn clone(&self) -> StmFileType
fn clone(&self) -> StmFileType
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 StmFileType
impl Debug for StmFileType
Source§impl From<u8> for StmFileType
impl From<u8> for StmFileType
Source§impl PartialEq for StmFileType
impl PartialEq for StmFileType
Source§fn eq(&self, other: &StmFileType) -> bool
fn eq(&self, other: &StmFileType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for StmFileType
impl Eq for StmFileType
impl StructuralPartialEq for StmFileType
Auto Trait Implementations§
impl Freeze for StmFileType
impl RefUnwindSafe for StmFileType
impl Send for StmFileType
impl Sync for StmFileType
impl Unpin for StmFileType
impl UnsafeUnpin for StmFileType
impl UnwindSafe for StmFileType
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