pub enum AsyncEvent {
Notice(TaggedNotice),
ParameterStatus(ParameterStatus),
Notification(Notification),
}Expand description
A causally independent backend event retained in its original wire order.
Variants§
Notice(TaggedNotice)
A positionally tagged notice.
ParameterStatus(ParameterStatus)
A run-time parameter update.
Notification(Notification)
A LISTEN/NOTIFY notification.
Trait Implementations§
Source§impl Clone for AsyncEvent
impl Clone for AsyncEvent
Source§fn clone(&self) -> AsyncEvent
fn clone(&self) -> AsyncEvent
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 AsyncEvent
impl Debug for AsyncEvent
impl Eq for AsyncEvent
Source§impl PartialEq for AsyncEvent
impl PartialEq for AsyncEvent
impl StructuralPartialEq for AsyncEvent
Auto Trait Implementations§
impl !Freeze for AsyncEvent
impl RefUnwindSafe for AsyncEvent
impl Send for AsyncEvent
impl Sync for AsyncEvent
impl Unpin for AsyncEvent
impl UnsafeUnpin for AsyncEvent
impl UnwindSafe for AsyncEvent
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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