added impls
This commit is contained in:
parent
42237f4a4b
commit
d814091e73
@ -6,7 +6,7 @@ use serde::{Serialize, Deserialize};
|
|||||||
/// case you want to deal with internationalization.
|
/// case you want to deal with internationalization.
|
||||||
/// It was left as optional just in case you don't
|
/// It was left as optional just in case you don't
|
||||||
/// have the time to yet...
|
/// have the time to yet...
|
||||||
#[derive(Serialize, Deserialize, Debug, Clone)]
|
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, PartialOrd, Ord)]
|
||||||
pub struct MessageResource {
|
pub struct MessageResource {
|
||||||
pub key: Option<String>,
|
pub key: Option<String>,
|
||||||
pub message: String,
|
pub message: String,
|
||||||
@ -39,7 +39,6 @@ impl Default for MessageResource{
|
|||||||
Self { key: None, message: "".to_string() }
|
Self { key: None, message: "".to_string() }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// This is supposed to be used whenever you have an error in your code and want to be more specific about it.
|
/// This is supposed to be used whenever you have an error in your code and want to be more specific about it.
|
||||||
/// Fits in with most CRUD web apps. What you send back to the client is a MessageResource, not the error itself!
|
/// Fits in with most CRUD web apps. What you send back to the client is a MessageResource, not the error itself!
|
||||||
#[derive(Debug, Clone)]
|
#[derive(Debug, Clone)]
|
||||||
|
Loading…
Reference in New Issue
Block a user