pub struct PlaybackId(/* private fields */);Expand description
Identifies one playback on one session.
Carried by Playback and by the completion event a call reports it through, so a caller
that started several clips can tell which of them the report is about.
Trait Implementations§
Source§impl Clone for PlaybackId
impl Clone for PlaybackId
Source§fn clone(&self) -> PlaybackId
fn clone(&self) -> PlaybackId
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 PlaybackId
impl Debug for PlaybackId
Source§impl Display for PlaybackId
impl Display for PlaybackId
Source§impl Hash for PlaybackId
impl Hash for PlaybackId
Source§impl Ord for PlaybackId
impl Ord for PlaybackId
Source§fn cmp(&self, other: &PlaybackId) -> Ordering
fn cmp(&self, other: &PlaybackId) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for PlaybackId
impl PartialEq for PlaybackId
Source§fn eq(&self, other: &PlaybackId) -> bool
fn eq(&self, other: &PlaybackId) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for PlaybackId
impl PartialOrd for PlaybackId
impl Copy for PlaybackId
impl Eq for PlaybackId
impl StructuralPartialEq for PlaybackId
Auto Trait Implementations§
impl Freeze for PlaybackId
impl RefUnwindSafe for PlaybackId
impl Send for PlaybackId
impl Sync for PlaybackId
impl Unpin for PlaybackId
impl UnsafeUnpin for PlaybackId
impl UnwindSafe for PlaybackId
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more