pub enum SubscriberEvent {
ReceivedNotify(Option<Uuid>, Vec<u8>, Arc<Body>),
NearExpiration(Arc<SipDialog>),
Terminated(Option<Arc<SipDialog>>, bool, u32),
SubscribeFailed(u32),
}
Variants§
ReceivedNotify(Option<Uuid>, Vec<u8>, Arc<Body>)
NearExpiration(Arc<SipDialog>)
Terminated(Option<Arc<SipDialog>>, bool, u32)
SubscribeFailed(u32)
Auto Trait Implementations§
impl Freeze for SubscriberEvent
impl !RefUnwindSafe for SubscriberEvent
impl Send for SubscriberEvent
impl Sync for SubscriberEvent
impl Unpin for SubscriberEvent
impl !UnwindSafe for SubscriberEvent
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