pub struct DeleteCommentParams {
pub tenant_id: String,
pub id: String,
pub context_user_id: Option<String>,
pub is_live: Option<bool>,
}Expand description
struct for passing parameters to the method delete_comment
Fields§
§tenant_id: String§id: String§context_user_id: Option<String>§is_live: Option<bool>Trait Implementations§
Source§impl Clone for DeleteCommentParams
impl Clone for DeleteCommentParams
Source§fn clone(&self) -> DeleteCommentParams
fn clone(&self) -> DeleteCommentParams
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 moreAuto Trait Implementations§
impl Freeze for DeleteCommentParams
impl RefUnwindSafe for DeleteCommentParams
impl Send for DeleteCommentParams
impl Sync for DeleteCommentParams
impl Unpin for DeleteCommentParams
impl UnwindSafe for DeleteCommentParams
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