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