pub struct CodeReviewVoteReference(/* private fields */);Expand description
A reference to a vote on a IBranchMergeProposal.
There is at most one reference to a vote for each reviewer on a given branch merge proposal.
Implementations§
Source§impl CodeReviewVoteReference
impl CodeReviewVoteReference
pub fn get<'a>( &self, client: &'a dyn Client, ) -> Result<CodeReviewVoteReferenceFull, Error>
pub fn get_wadl<'a>(&self, client: &'a dyn Client) -> Result<Resource, Error>
pub fn put<'a>( &self, client: &'a dyn Client, representation: &CodeReviewVoteReferenceFull, ) -> Result<(), Error>
pub fn patch<'a>( &self, client: &'a dyn Client, representation: &CodeReviewVoteReferenceDiff, ) -> Result<(), Error>
pub fn delete<'a>(&self, client: &'a dyn Client) -> Result<(), Error>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CodeReviewVoteReference
impl RefUnwindSafe for CodeReviewVoteReference
impl Send for CodeReviewVoteReference
impl Sync for CodeReviewVoteReference
impl Unpin for CodeReviewVoteReference
impl UnwindSafe for CodeReviewVoteReference
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