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