pub enum PageType {
Show 15 variants
Tracks,
Genres,
Artists,
Albums,
Labels,
Keys,
Colors,
PlaylistTree,
PlaylistEntries,
HistoryPlaylists,
HistoryEntries,
Artwork,
Columns,
History,
Unknown(u32),
}
Expand description
The type of pages found inside a Table
.
Variants§
Tracks
Holds rows of track metadata, such as title, artist, genre, artwork ID, playing time, etc.
Genres
Holds rows of musical genres, for reference by tracks and searching.
Artists
Holds rows of artists, for reference by tracks and searching.
Albums
Holds rows of albums, for reference by tracks and searching.
Labels
Holds rows of music labels, for reference by tracks and searching.
Keys
Holds rows of musical keys, for reference by tracks, searching, and key matching.
Colors
Holds rows of color labels, for reference by tracks and searching.
PlaylistTree
Holds rows that describe the hierarchical tree structure of available playlists and folders grouping them.
PlaylistEntries
Holds rows that links tracks to playlists, in the right order.
HistoryPlaylists
Holds rows of history playlists, i.e. playlists that are recorded every time the device is mounted by a player.
HistoryEntries
Holds rows that links tracks to history playlists, in the right order.
Artwork
Holds rows pointing to album artwork images.
Columns
Contains the metadata categories by which Tracks can be browsed by.
History
Holds information used by rekordbox to synchronize history playlists (not yet studied).
Unknown(u32)
Unknown Page type.
Trait Implementations§
Source§impl BinRead for PageType
impl BinRead for PageType
Source§fn read_options<R: Read + Seek>(
__binrw_generated_var_reader: &mut R,
__binrw_generated_var_endian: Endian,
__binrw_generated_var_arguments: Self::Args<'_>,
) -> BinResult<Self>
fn read_options<R: Read + Seek>( __binrw_generated_var_reader: &mut R, __binrw_generated_var_endian: Endian, __binrw_generated_var_arguments: Self::Args<'_>, ) -> BinResult<Self>
§fn read<R>(reader: &mut R) -> Result<Self, Error>
fn read<R>(reader: &mut R) -> Result<Self, Error>
Self
from the reader using default arguments. Read more§fn read_be<R>(reader: &mut R) -> Result<Self, Error>
fn read_be<R>(reader: &mut R) -> Result<Self, Error>
Self
from the reader using default arguments and assuming
big-endian byte order. Read more§fn read_le<R>(reader: &mut R) -> Result<Self, Error>
fn read_le<R>(reader: &mut R) -> Result<Self, Error>
Self
from the reader using default arguments and assuming
little-endian byte order. Read more§fn read_ne<R>(reader: &mut R) -> Result<Self, Error>
fn read_ne<R>(reader: &mut R) -> Result<Self, Error>
T
from the reader assuming native-endian byte order. Read more§fn read_args<R>(reader: &mut R, args: Self::Args<'_>) -> Result<Self, Error>
fn read_args<R>(reader: &mut R, args: Self::Args<'_>) -> Result<Self, Error>
Self
from the reader using the given arguments. Read more§fn read_be_args<R>(reader: &mut R, args: Self::Args<'_>) -> Result<Self, Error>
fn read_be_args<R>(reader: &mut R, args: Self::Args<'_>) -> Result<Self, Error>
Self
from the reader, assuming big-endian byte order, using the
given arguments. Read more§fn read_le_args<R>(reader: &mut R, args: Self::Args<'_>) -> Result<Self, Error>
fn read_le_args<R>(reader: &mut R, args: Self::Args<'_>) -> Result<Self, Error>
Self
from the reader, assuming little-endian byte order, using
the given arguments. Read moreSource§impl BinWrite for PageType
impl BinWrite for PageType
Source§fn write_options<W: Write + Seek>(
&self,
__binrw_generated_var_writer: &mut W,
__binrw_generated_var_endian: Endian,
__binrw_generated_var_arguments: Self::Args<'_>,
) -> BinResult<()>
fn write_options<W: Write + Seek>( &self, __binrw_generated_var_writer: &mut W, __binrw_generated_var_endian: Endian, __binrw_generated_var_arguments: Self::Args<'_>, ) -> BinResult<()>
§fn write<W>(&self, writer: &mut W) -> Result<(), Error>
fn write<W>(&self, writer: &mut W) -> Result<(), Error>
Self
to the writer using default arguments. Read more§fn write_be<W>(&self, writer: &mut W) -> Result<(), Error>
fn write_be<W>(&self, writer: &mut W) -> Result<(), Error>
Self
to the writer assuming big-endian byte order. Read more§fn write_le<W>(&self, writer: &mut W) -> Result<(), Error>
fn write_le<W>(&self, writer: &mut W) -> Result<(), Error>
Self
to the writer assuming little-endian byte order. Read more§fn write_args<W>(
&self,
writer: &mut W,
args: Self::Args<'_>,
) -> Result<(), Error>
fn write_args<W>( &self, writer: &mut W, args: Self::Args<'_>, ) -> Result<(), Error>
Self
to the writer using the given arguments. Read more