pub struct QueueContext {
pub feature_name: Option<String>,
}Expand description
Context metadata for a QueueItem.
Fields§
§feature_name: Option<String>Feature that queued this item (e.g. "now_playing").
Trait Implementations§
Source§impl Clone for QueueContext
impl Clone for QueueContext
Source§fn clone(&self) -> QueueContext
fn clone(&self) -> QueueContext
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 QueueContext
impl Debug for QueueContext
Source§impl<'de> Deserialize<'de> for QueueContext
impl<'de> Deserialize<'de> for QueueContext
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 QueueContext
impl RefUnwindSafe for QueueContext
impl Send for QueueContext
impl Sync for QueueContext
impl Unpin for QueueContext
impl UnsafeUnpin for QueueContext
impl UnwindSafe for QueueContext
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