pub enum PushFrameErrorReason {
TrackUnpublished,
QueueFull,
}Expand description
Reason why a data track frame could not be pushed.
Variants§
TrackUnpublished
Track is no longer published.
QueueFull
Frame was dropped due to the pipeline queue being full.
Trait Implementations§
Source§impl Clone for PushFrameErrorReason
impl Clone for PushFrameErrorReason
Source§fn clone(&self) -> PushFrameErrorReason
fn clone(&self) -> PushFrameErrorReason
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 PushFrameErrorReason
impl Debug for PushFrameErrorReason
Source§impl Display for PushFrameErrorReason
impl Display for PushFrameErrorReason
impl Copy for PushFrameErrorReason
Auto Trait Implementations§
impl Freeze for PushFrameErrorReason
impl RefUnwindSafe for PushFrameErrorReason
impl Send for PushFrameErrorReason
impl Sync for PushFrameErrorReason
impl Unpin for PushFrameErrorReason
impl UnsafeUnpin for PushFrameErrorReason
impl UnwindSafe for PushFrameErrorReason
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