struct InboundTrackStatus {
message: TrackStatusRequest,
state: TrackStatusStateMachine,
}Expand description
A track status the peer asked for with TRACK_STATUS_REQUEST.
Kept apart from the ones this endpoint asked for because the two are answered by opposite ends: this one is waiting for an answer from here, and the other for one from the peer.
Fields§
§message: TrackStatusRequestThe message as it arrived, which is what the answer is built from.
state: TrackStatusStateMachineHow far the request it opened has got.
Auto Trait Implementations§
impl Freeze for InboundTrackStatus
impl RefUnwindSafe for InboundTrackStatus
impl Send for InboundTrackStatus
impl Sync for InboundTrackStatus
impl Unpin for InboundTrackStatus
impl UnsafeUnpin for InboundTrackStatus
impl UnwindSafe for InboundTrackStatus
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