#[non_exhaustive]
pub struct Play { pub end_time: Option<u64>, pub guild_id: Id<GuildMarker>, pub no_replace: bool, pub op: Opcode, pub start_time: Option<u64>, pub track: String, }
Expand description

Play a track, optionally specifying to not skip the current track.

Fields (Non-exhaustive)§

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
§end_time: Option<u64>

The position in milliseconds to end the track.

This currently does nothing as of this writing.

§guild_id: Id<GuildMarker>

The guild ID of the player.

§no_replace: bool

Whether or not to replace the currently playing track with this new track.

Set to true to keep playing the current playing track, or false to replace the current playing track with a new one.

§op: Opcode

The opcode of the event.

§start_time: Option<u64>

The position in milliseconds to start the track from.

For example, set to 5000 to start the track 5 seconds in.

§track: String

The base64 track information.

Implementations§

source§

impl Play

source

pub fn new( guild_id: Id<GuildMarker>, track: impl Into<String>, start_time: impl Into<Option<u64>>, end_time: impl Into<Option<u64>>, no_replace: bool ) -> Self

Create a new play event.

Trait Implementations§

source§

impl Clone for Play

source§

fn clone(&self) -> Play

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Play

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de> Deserialize<'de> for Play

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl<T: Into<String>> From<(Id<GuildMarker>, T)> for Play

source§

fn from((guild_id, track): (Id<GuildMarker>, T)) -> Self

Converts to this type from the input type.
source§

impl<T: Into<String>, S: Into<Option<u64>>> From<(Id<GuildMarker>, T, S)> for Play

source§

fn from((guild_id, track, start_time): (Id<GuildMarker>, T, S)) -> Self

Converts to this type from the input type.
source§

impl<T: Into<String>, S: Into<Option<u64>>, E: Into<Option<u64>>> From<(Id<GuildMarker>, T, S, E)> for Play

source§

fn from( (guild_id, track, start_time, end_time): (Id<GuildMarker>, T, S, E) ) -> Self

Converts to this type from the input type.
source§

impl<T: Into<String>, S: Into<Option<u64>>, E: Into<Option<u64>>> From<(Id<GuildMarker>, T, S, E, bool)> for Play

source§

fn from( (guild_id, track, start_time, end_time, no_replace): (Id<GuildMarker>, T, S, E, bool) ) -> Self

Converts to this type from the input type.
source§

impl From<Play> for OutgoingEvent

source§

fn from(event: Play) -> OutgoingEvent

Converts to this type from the input type.
source§

impl PartialEq for Play

source§

fn eq(&self, other: &Play) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for Play

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl Eq for Play

source§

impl StructuralPartialEq for Play

Auto Trait Implementations§

§

impl Freeze for Play

§

impl RefUnwindSafe for Play

§

impl Send for Play

§

impl Sync for Play

§

impl Unpin for Play

§

impl UnwindSafe for Play

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,