pub struct SetCommentTextParams {
pub tenant_id: String,
pub comment_id: String,
pub broadcast_id: String,
pub comment_text_update_request: CommentTextUpdateRequest,
pub edit_key: Option<String>,
pub sso: Option<String>,
}Expand description
struct for passing parameters to the method set_comment_text
Fields§
§tenant_id: String§comment_id: String§broadcast_id: String§comment_text_update_request: CommentTextUpdateRequest§edit_key: Option<String>§sso: Option<String>Trait Implementations§
Source§impl Clone for SetCommentTextParams
impl Clone for SetCommentTextParams
Source§fn clone(&self) -> SetCommentTextParams
fn clone(&self) -> SetCommentTextParams
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 SetCommentTextParams
impl RefUnwindSafe for SetCommentTextParams
impl Send for SetCommentTextParams
impl Sync for SetCommentTextParams
impl Unpin for SetCommentTextParams
impl UnwindSafe for SetCommentTextParams
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