pub enum TrackStatusCode {
InProgress = 0,
DoesNotExist = 1,
NotYetBegun = 2,
Finished = 3,
Relay = 4,
}
Expand description
Track Status Codes https://www.ietf.org/archive/id/draft-ietf-moq-transport-04.html#name-track_status
Variants§
Trait Implementations§
Source§impl Clone for TrackStatusCode
impl Clone for TrackStatusCode
Source§fn clone(&self) -> TrackStatusCode
fn clone(&self) -> TrackStatusCode
Returns a copy 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 TrackStatusCode
impl Debug for TrackStatusCode
Source§impl Decode for TrackStatusCode
impl Decode for TrackStatusCode
Source§impl Encode for TrackStatusCode
impl Encode for TrackStatusCode
Source§impl PartialEq for TrackStatusCode
impl PartialEq for TrackStatusCode
impl Copy for TrackStatusCode
impl StructuralPartialEq for TrackStatusCode
Auto Trait Implementations§
impl Freeze for TrackStatusCode
impl RefUnwindSafe for TrackStatusCode
impl Send for TrackStatusCode
impl Sync for TrackStatusCode
impl Unpin for TrackStatusCode
impl UnwindSafe for TrackStatusCode
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