pub enum StallPoint {
Upgrade,
Session,
}Expand description
Where the peer stops serving the socket while holding it open (ORB-14).
A stall is not a close: the connection stays established and unread, so no Pong is ever written and the client’s liveness timer (§6: 30 s + 10 s) is the only thing that can end it.
Variants§
Upgrade
Answer the upgrade, then nothing at all — not even session.created. This is ORB-14’s
script: “peer answers the upgrade then goes silent”.
Session
Answer setup normally, then go silent the moment the first uplink frame arrives: the mid-call stall, where audio was already flowing when the far end stopped. The frame is read and recorded first, so the record shows the peer was alive when it went quiet.
Trait Implementations§
Source§impl Clone for StallPoint
impl Clone for StallPoint
Source§fn clone(&self) -> StallPoint
fn clone(&self) -> StallPoint
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 StallPoint
impl Debug for StallPoint
Source§impl PartialEq for StallPoint
impl PartialEq for StallPoint
Source§fn eq(&self, other: &StallPoint) -> bool
fn eq(&self, other: &StallPoint) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for StallPoint
impl Eq for StallPoint
impl StructuralPartialEq for StallPoint
Auto Trait Implementations§
impl Freeze for StallPoint
impl RefUnwindSafe for StallPoint
impl Send for StallPoint
impl Sync for StallPoint
impl Unpin for StallPoint
impl UnsafeUnpin for StallPoint
impl UnwindSafe for StallPoint
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> 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