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