pub enum Answer {
None,
Accept(Accepted),
TooBrief(Duration),
}Expand description
What a UAS should do about the session timer on an incoming request.
Variants§
None
No timer on this dialog: the peer neither asked for one nor said it could run one.
Accept(Accepted)
Run a timer on these terms, and say so in the 2xx.
TooBrief(Duration)
Refuse with 422 Session Interval Too Small, carrying this Min-SE.
Trait Implementations§
impl Copy for Answer
impl Eq for Answer
impl StructuralPartialEq for Answer
Auto Trait Implementations§
impl Freeze for Answer
impl RefUnwindSafe for Answer
impl Send for Answer
impl Sync for Answer
impl Unpin for Answer
impl UnsafeUnpin for Answer
impl UnwindSafe for Answer
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