pub struct TableMapping {
pub table_tracking_commands: Vec<u8>,
pub mapping: [u8; 256],
pub to_move: Vec<u8>,
}
Fields§
§table_tracking_commands: Vec<u8>
List all the command ID referencing a table as value. Depend on the song version number.
mapping: [u8; 256]
Mapping from the “from” song index to the to
to_move: Vec<u8>
Table to be moved during remapping
Implementations§
Source§impl TableMapping
impl TableMapping
Auto Trait Implementations§
impl Freeze for TableMapping
impl RefUnwindSafe for TableMapping
impl Send for TableMapping
impl Sync for TableMapping
impl Unpin for TableMapping
impl UnwindSafe for TableMapping
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