pub struct ErrorError {
pub message: Option<String>,
}Fields§
§message: Option<String>Implementations§
Source§impl ErrorError
impl ErrorError
pub fn new() -> ErrorError
Trait Implementations§
Source§impl Clone for ErrorError
impl Clone for ErrorError
Source§fn clone(&self) -> ErrorError
fn clone(&self) -> ErrorError
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 ErrorError
impl Debug for ErrorError
Source§impl Default for ErrorError
impl Default for ErrorError
Source§fn default() -> ErrorError
fn default() -> ErrorError
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ErrorError
impl<'de> Deserialize<'de> for ErrorError
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 PartialEq for ErrorError
impl PartialEq for ErrorError
Source§impl Serialize for ErrorError
impl Serialize for ErrorError
impl StructuralPartialEq for ErrorError
Auto Trait Implementations§
impl Freeze for ErrorError
impl RefUnwindSafe for ErrorError
impl Send for ErrorError
impl Sync for ErrorError
impl Unpin for ErrorError
impl UnwindSafe for ErrorError
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