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