pub struct EffectiveSettings {
pub token: Option<String>,
pub format: AudioFormat,
pub concurrency: u32,
pub retries: u32,
pub min_newest: u32,
pub animated_covers: bool,
}Expand description
Resolved effective settings for one account/source combination.
Fields§
§token: Option<String>§format: AudioFormat§concurrency: u32§retries: u32§min_newest: u32§animated_covers: boolTrait Implementations§
Source§impl Clone for EffectiveSettings
impl Clone for EffectiveSettings
Source§fn clone(&self) -> EffectiveSettings
fn clone(&self) -> EffectiveSettings
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 EffectiveSettings
impl Debug for EffectiveSettings
Source§impl PartialEq for EffectiveSettings
impl PartialEq for EffectiveSettings
Source§fn eq(&self, other: &EffectiveSettings) -> bool
fn eq(&self, other: &EffectiveSettings) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for EffectiveSettings
Auto Trait Implementations§
impl Freeze for EffectiveSettings
impl RefUnwindSafe for EffectiveSettings
impl Send for EffectiveSettings
impl Sync for EffectiveSettings
impl Unpin for EffectiveSettings
impl UnsafeUnpin for EffectiveSettings
impl UnwindSafe for EffectiveSettings
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