pub enum MergeProposalStatus {
All,
Open,
Closed,
Merged,
}Expand description
Status of a merge proposal.
Variants§
All
All merge proposals regardless of status.
Open
Open merge proposals that haven’t been merged or closed.
Closed
Closed merge proposals that weren’t merged.
Merged
Merged merge proposals that have been accepted and integrated.
Implementations§
Trait Implementations§
Source§impl Clone for MergeProposalStatus
impl Clone for MergeProposalStatus
Source§fn clone(&self) -> MergeProposalStatus
fn clone(&self) -> MergeProposalStatus
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 MergeProposalStatus
impl Debug for MergeProposalStatus
Source§impl Display for MergeProposalStatus
impl Display for MergeProposalStatus
Source§impl<'a, 'py> FromPyObject<'a, 'py> for MergeProposalStatus
impl<'a, 'py> FromPyObject<'a, 'py> for MergeProposalStatus
Source§impl FromStr for MergeProposalStatus
impl FromStr for MergeProposalStatus
Source§impl Hash for MergeProposalStatus
impl Hash for MergeProposalStatus
Source§impl<'py> IntoPyObject<'py> for MergeProposalStatus
impl<'py> IntoPyObject<'py> for MergeProposalStatus
Source§type Output = Bound<'py, <MergeProposalStatus as IntoPyObject<'py>>::Target>
type Output = Bound<'py, <MergeProposalStatus as IntoPyObject<'py>>::Target>
The smart pointer type to use. Read more
Source§type Error = Infallible
type Error = Infallible
The type returned in the event of a conversion error.
Source§impl PartialEq for MergeProposalStatus
impl PartialEq for MergeProposalStatus
impl Copy for MergeProposalStatus
impl Eq for MergeProposalStatus
impl StructuralPartialEq for MergeProposalStatus
Auto Trait Implementations§
impl Freeze for MergeProposalStatus
impl RefUnwindSafe for MergeProposalStatus
impl Send for MergeProposalStatus
impl Sync for MergeProposalStatus
impl Unpin for MergeProposalStatus
impl UnwindSafe for MergeProposalStatus
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<'py, T> IntoPyObjectExt<'py> for Twhere
T: IntoPyObject<'py>,
impl<'py, T> IntoPyObjectExt<'py> for Twhere
T: IntoPyObject<'py>,
Source§fn into_bound_py_any(self, py: Python<'py>) -> Result<Bound<'py, PyAny>, PyErr>
fn into_bound_py_any(self, py: Python<'py>) -> Result<Bound<'py, PyAny>, PyErr>
Converts
self into an owned Python object, dropping type information.