pub enum Received {
Acknowledge,
Duplicate,
OutOfOrder,
}Expand description
What the UAC should do with a reliable provisional it has just received.
Variants§
Acknowledge
In order. Acknowledge it with a PRACK.
Duplicate
A retransmission of one already seen. §4: “retransmissions of that response MUST be discarded” — and notably not re-PRACKed, so a lossy path does not turn one ringing response into a stream of PRACKs.
OutOfOrder
Out of order: a gap, so an earlier response has not arrived. §4 says such a response “MUST NOT be acknowledged with a PRACK, and MUST NOT be processed further”.
Trait Implementations§
impl Copy for Received
impl Eq for Received
impl StructuralPartialEq for Received
Auto Trait Implementations§
impl Freeze for Received
impl RefUnwindSafe for Received
impl Send for Received
impl Sync for Received
impl Unpin for Received
impl UnsafeUnpin for Received
impl UnwindSafe for Received
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