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