pub struct SaveCommentParams {
pub tenant_id: String,
pub create_comment_params: CreateCommentParams,
pub is_live: Option<bool>,
pub do_spam_check: Option<bool>,
pub send_emails: Option<bool>,
pub populate_notifications: Option<bool>,
}Expand description
struct for passing parameters to the method save_comment
Fields§
§tenant_id: String§create_comment_params: CreateCommentParams§is_live: Option<bool>§do_spam_check: Option<bool>§send_emails: Option<bool>§populate_notifications: Option<bool>Trait Implementations§
Source§impl Clone for SaveCommentParams
impl Clone for SaveCommentParams
Source§fn clone(&self) -> SaveCommentParams
fn clone(&self) -> SaveCommentParams
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 SaveCommentParams
impl RefUnwindSafe for SaveCommentParams
impl Send for SaveCommentParams
impl Sync for SaveCommentParams
impl Unpin for SaveCommentParams
impl UnwindSafe for SaveCommentParams
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