pub enum ServerCallOutcome {
Replied,
DroppedWithoutReply,
}Expand description
Outcome observed by server middleware after handler dispatch.
Variants§
Replied
The handler sent a reply through the reply sink.
DroppedWithoutReply
The handler returned without replying; the runtime will synthesize cancellation.
Implementations§
Trait Implementations§
Source§impl Clone for ServerCallOutcome
impl Clone for ServerCallOutcome
Source§fn clone(&self) -> ServerCallOutcome
fn clone(&self) -> ServerCallOutcome
Returns a duplicate 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 ServerCallOutcome
impl Debug for ServerCallOutcome
Source§impl PartialEq for ServerCallOutcome
impl PartialEq for ServerCallOutcome
impl Copy for ServerCallOutcome
impl Eq for ServerCallOutcome
impl StructuralPartialEq for ServerCallOutcome
Auto Trait Implementations§
impl Freeze for ServerCallOutcome
impl RefUnwindSafe for ServerCallOutcome
impl Send for ServerCallOutcome
impl Sync for ServerCallOutcome
impl Unpin for ServerCallOutcome
impl UnsafeUnpin for ServerCallOutcome
impl UnwindSafe for ServerCallOutcome
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.