pub enum Reception {
Accept,
Refuse(Refusal),
}Expand description
What to do with an UPDATE that has arrived.
Variants§
Accept
Process it: renegotiate if it carried an offer, and answer 2xx.
Refuse(Refusal)
Refuse it, without disturbing the dialog.
Trait Implementations§
impl Copy for Reception
impl Eq for Reception
impl StructuralPartialEq for Reception
Auto Trait Implementations§
impl Freeze for Reception
impl RefUnwindSafe for Reception
impl Send for Reception
impl Sync for Reception
impl Unpin for Reception
impl UnsafeUnpin for Reception
impl UnwindSafe for Reception
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