pub enum PullRequestClosedPullRequestRequestedReviewersItem {
User(User),
Team(Team),
}
Expand description
PullRequestClosedPullRequestRequestedReviewersItem
JSON schema
{
"oneOf": [
{
"$ref": "#/definitions/user"
},
{
"$ref": "#/definitions/team"
}
]
}
Variants§
Trait Implementations§
Source§impl Clone for PullRequestClosedPullRequestRequestedReviewersItem
impl Clone for PullRequestClosedPullRequestRequestedReviewersItem
Source§fn clone(&self) -> PullRequestClosedPullRequestRequestedReviewersItem
fn clone(&self) -> PullRequestClosedPullRequestRequestedReviewersItem
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<'de> Deserialize<'de> for PullRequestClosedPullRequestRequestedReviewersItem
impl<'de> Deserialize<'de> for PullRequestClosedPullRequestRequestedReviewersItem
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 From<&PullRequestClosedPullRequestRequestedReviewersItem> for PullRequestClosedPullRequestRequestedReviewersItem
impl From<&PullRequestClosedPullRequestRequestedReviewersItem> for PullRequestClosedPullRequestRequestedReviewersItem
Source§fn from(value: &PullRequestClosedPullRequestRequestedReviewersItem) -> Self
fn from(value: &PullRequestClosedPullRequestRequestedReviewersItem) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PullRequestClosedPullRequestRequestedReviewersItem
impl RefUnwindSafe for PullRequestClosedPullRequestRequestedReviewersItem
impl Send for PullRequestClosedPullRequestRequestedReviewersItem
impl Sync for PullRequestClosedPullRequestRequestedReviewersItem
impl Unpin for PullRequestClosedPullRequestRequestedReviewersItem
impl UnwindSafe for PullRequestClosedPullRequestRequestedReviewersItem
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