pub enum InnerSubscriptionResult {
Success,
Aborted,
}
Available on crate feature
server
only.Expand description
Outcome of a successful terminated subscription.
Variants§
Success
The subscription stream was executed successfully.
Aborted
The subscription was aborted by the remote peer.
Trait Implementations§
source§impl Clone for InnerSubscriptionResult
impl Clone for InnerSubscriptionResult
source§fn clone(&self) -> InnerSubscriptionResult
fn clone(&self) -> InnerSubscriptionResult
Returns a copy of the value. Read more
1.0.0 · 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 InnerSubscriptionResult
impl Debug for InnerSubscriptionResult
impl Copy for InnerSubscriptionResult
Auto Trait Implementations§
impl RefUnwindSafe for InnerSubscriptionResult
impl Send for InnerSubscriptionResult
impl Sync for InnerSubscriptionResult
impl Unpin for InnerSubscriptionResult
impl UnwindSafe for InnerSubscriptionResult
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