pub enum PatchStatus {
Proposed,
AppliedInFork,
Evaluated,
Approved,
Rejected,
Promoted,
Stale,
Conflicted,
}Variants§
Trait Implementations§
Source§impl Clone for PatchStatus
impl Clone for PatchStatus
Source§fn clone(&self) -> PatchStatus
fn clone(&self) -> PatchStatus
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PatchStatus
impl Debug for PatchStatus
Source§impl<'de> Deserialize<'de> for PatchStatus
impl<'de> Deserialize<'de> for PatchStatus
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
impl Eq for PatchStatus
Source§impl PartialEq for PatchStatus
impl PartialEq for PatchStatus
Source§fn eq(&self, other: &PatchStatus) -> bool
fn eq(&self, other: &PatchStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PatchStatus
impl Serialize for PatchStatus
impl StructuralPartialEq for PatchStatus
Auto Trait Implementations§
impl Freeze for PatchStatus
impl RefUnwindSafe for PatchStatus
impl Send for PatchStatus
impl Sync for PatchStatus
impl Unpin for PatchStatus
impl UnsafeUnpin for PatchStatus
impl UnwindSafe for PatchStatus
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