pub struct CreateCommentPublicParams {
pub tenant_id: String,
pub url_id: String,
pub broadcast_id: String,
pub comment_data: CommentData,
pub session_id: Option<String>,
pub sso: Option<String>,
}Expand description
struct for passing parameters to the method create_comment_public
Fields§
§tenant_id: String§url_id: String§broadcast_id: String§comment_data: CommentData§session_id: Option<String>§sso: Option<String>Trait Implementations§
Source§impl Clone for CreateCommentPublicParams
impl Clone for CreateCommentPublicParams
Source§fn clone(&self) -> CreateCommentPublicParams
fn clone(&self) -> CreateCommentPublicParams
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 CreateCommentPublicParams
impl RefUnwindSafe for CreateCommentPublicParams
impl Send for CreateCommentPublicParams
impl Sync for CreateCommentPublicParams
impl Unpin for CreateCommentPublicParams
impl UnwindSafe for CreateCommentPublicParams
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