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