pub struct JukeboxSongDisks {
pub max_length: i32,
pub song_disks: HashMap<i32, i32>,
}
Fields§
§max_length: i32
§song_disks: HashMap<i32, i32>
Trait Implementations§
Source§impl BaseParser for JukeboxSongDisks
impl BaseParser for JukeboxSongDisks
fn parse(packet: &mut HPacket) -> Self
fn append_to_packet(&self, packet: &mut HPacket)
fn get_direction() -> HDirection
fn get_packet_name() -> String
Source§impl Clone for JukeboxSongDisks
impl Clone for JukeboxSongDisks
Source§fn clone(&self) -> JukeboxSongDisks
fn clone(&self) -> JukeboxSongDisks
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 moreSource§impl Debug for JukeboxSongDisks
impl Debug for JukeboxSongDisks
Source§impl Default for JukeboxSongDisks
impl Default for JukeboxSongDisks
Source§fn default() -> JukeboxSongDisks
fn default() -> JukeboxSongDisks
Returns the “default value” for a type. Read more
Source§impl PacketVariable for JukeboxSongDisks
impl PacketVariable for JukeboxSongDisks
Source§impl PartialEq for JukeboxSongDisks
impl PartialEq for JukeboxSongDisks
impl StructuralPartialEq for JukeboxSongDisks
Auto Trait Implementations§
impl Freeze for JukeboxSongDisks
impl RefUnwindSafe for JukeboxSongDisks
impl Send for JukeboxSongDisks
impl Sync for JukeboxSongDisks
impl Unpin for JukeboxSongDisks
impl UnwindSafe for JukeboxSongDisks
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