pub struct PullReviewRequestOptions {
pub reviewers: Option<Vec<String>>,
pub team_reviewers: Option<Vec<String>>,
}Expand description
PullReviewRequestOptions are options to add or remove pull review requests
Fields§
§reviewers: Option<Vec<String>>§team_reviewers: Option<Vec<String>>Trait Implementations§
Source§impl Clone for PullReviewRequestOptions
impl Clone for PullReviewRequestOptions
Source§fn clone(&self) -> PullReviewRequestOptions
fn clone(&self) -> PullReviewRequestOptions
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 moreSource§impl Debug for PullReviewRequestOptions
impl Debug for PullReviewRequestOptions
Source§impl<'de> Deserialize<'de> for PullReviewRequestOptions
impl<'de> Deserialize<'de> for PullReviewRequestOptions
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PullReviewRequestOptions
impl PartialEq for PullReviewRequestOptions
Source§impl Serialize for PullReviewRequestOptions
impl Serialize for PullReviewRequestOptions
impl StructuralPartialEq for PullReviewRequestOptions
Auto Trait Implementations§
impl Freeze for PullReviewRequestOptions
impl RefUnwindSafe for PullReviewRequestOptions
impl Send for PullReviewRequestOptions
impl Sync for PullReviewRequestOptions
impl Unpin for PullReviewRequestOptions
impl UnwindSafe for PullReviewRequestOptions
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