pub struct FastMessageServerError {
pub name: String,
pub message: String,
}
Expand description
An error type representing Fast error messages that may be returned from a Fast server.
Fields§
§name: String
§message: String
Implementations§
Trait Implementations§
Source§impl Debug for FastMessageServerError
impl Debug for FastMessageServerError
Source§impl<'de> Deserialize<'de> for FastMessageServerError
impl<'de> Deserialize<'de> for FastMessageServerError
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<FastMessageServerError> for Error
impl From<FastMessageServerError> for Error
Source§fn from(err: FastMessageServerError) -> Self
fn from(err: FastMessageServerError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for FastMessageServerError
impl RefUnwindSafe for FastMessageServerError
impl Send for FastMessageServerError
impl Sync for FastMessageServerError
impl Unpin for FastMessageServerError
impl UnwindSafe for FastMessageServerError
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