struct InboundTrackStatus {
message: TrackStatus,
state: TrackStatusStateMachine,
}Expand description
A track status the peer asked for with TRACK_STATUS.
Section 8.20 treats the request as a SUBSCRIBE “except it does not create downstream subscription state”, so it is recorded here and not among the subscriptions the peer has opened. Nothing that names a subscription can find it, which is the whole of what that exception asks for.
Fields§
§message: TrackStatusThe 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