pub enum PullRequestState {
Open,
Closed,
Merged,
}Expand description
State of a pull request.
Variants§
Trait Implementations§
Source§impl Clone for PullRequestState
impl Clone for PullRequestState
Source§fn clone(&self) -> PullRequestState
fn clone(&self) -> PullRequestState
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 PullRequestState
impl Debug for PullRequestState
Source§impl<'de> Deserialize<'de> for PullRequestState
impl<'de> Deserialize<'de> for PullRequestState
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 PullRequestState
impl PartialEq for PullRequestState
Source§impl Serialize for PullRequestState
impl Serialize for PullRequestState
impl Copy for PullRequestState
impl Eq for PullRequestState
impl StructuralPartialEq for PullRequestState
Auto Trait Implementations§
impl Freeze for PullRequestState
impl RefUnwindSafe for PullRequestState
impl Send for PullRequestState
impl Sync for PullRequestState
impl Unpin for PullRequestState
impl UnwindSafe for PullRequestState
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