[−][src]Struct tarpc_lib::ServerError
An error response from a server to a client.
Fields (Non-exhaustive)
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.kind: ErrorKind
The type of error that occurred to fail the request.
detail: Option<String>
A message describing more detail about the error that occurred.
Trait Implementations
impl Eq for ServerError
[src]
impl PartialEq<ServerError> for ServerError
[src]
fn eq(&self, other: &ServerError) -> bool
[src]
fn ne(&self, other: &ServerError) -> bool
[src]
impl From<ServerError> for Error
[src]
fn from(e: ServerError) -> Error
[src]
impl Debug for ServerError
[src]
Auto Trait Implementations
impl Send for ServerError
impl Sync for ServerError
Blanket Implementations
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> From for T
[src]
impl<T, U> TryFrom for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,