pub struct SettingsTrack {
pub level: f32,
pub pan: f32,
pub ids: Vec<u32>,
pub name: String,
pub safe_name: String,
pub selections_count: u32,
}Expand description
Track-level configuration shared by newer settings versions.
Fields§
§level: f32§pan: f32§ids: Vec<u32>§name: String§safe_name: String§selections_count: u32Trait Implementations§
Source§impl Clone for SettingsTrack
impl Clone for SettingsTrack
Source§fn clone(&self) -> SettingsTrack
fn clone(&self) -> SettingsTrack
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 SettingsTrack
impl Debug for SettingsTrack
Source§impl<'de> Deserialize<'de> for SettingsTrack
impl<'de> Deserialize<'de> for SettingsTrack
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SettingsTrack
impl RefUnwindSafe for SettingsTrack
impl Send for SettingsTrack
impl Sync for SettingsTrack
impl Unpin for SettingsTrack
impl UnwindSafe for SettingsTrack
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