pub enum DisconnectReason {
PeerClosed,
ServerClosed,
OldRelicComputer(String),
ReadFrameError(String),
SendFrameError(String),
SendActivityError(String),
ClearActivityError(String),
ClientChannelClosed,
Unknown,
}Expand description
Details about why the RPC connection was lost.
Variants§
PeerClosed
ServerClosed
OldRelicComputer(String)
ReadFrameError(String)
SendFrameError(String)
SendActivityError(String)
ClearActivityError(String)
ClientChannelClosed
Unknown
Trait Implementations§
Source§impl Clone for DisconnectReason
impl Clone for DisconnectReason
Source§fn clone(&self) -> DisconnectReason
fn clone(&self) -> DisconnectReason
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 moreAuto Trait Implementations§
impl Freeze for DisconnectReason
impl RefUnwindSafe for DisconnectReason
impl Send for DisconnectReason
impl Sync for DisconnectReason
impl Unpin for DisconnectReason
impl UnsafeUnpin for DisconnectReason
impl UnwindSafe for DisconnectReason
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