pub enum IssueRelationType {
Relates,
Duplicates,
Duplicated,
Blocks,
Blocked,
Precedes,
Follows,
CopiedTo,
CopiedFrom,
}
Expand description
Type of issue relation
Variants§
Relates
The most general type of issue relation
Duplicates
Indicates that the issue duplicates another issue
Duplicated
Indicates that the issue is duplicated by another issue
Blocks
Indicates that the issue blocks another issue
Blocked
Indicates that the issue is blocked by another issue
Precedes
Indicates that the issue precedes another issue
Follows
Indicates that the issue follows another issue
CopiedTo
Indicates that the issue was copied to another issue
CopiedFrom
Indicates that the issue was copied from another issue
Trait Implementations§
Source§impl Clone for IssueRelationType
impl Clone for IssueRelationType
Source§fn clone(&self) -> IssueRelationType
fn clone(&self) -> IssueRelationType
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 IssueRelationType
impl Debug for IssueRelationType
Source§impl<'de> Deserialize<'de> for IssueRelationType
impl<'de> Deserialize<'de> for IssueRelationType
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 Ord for IssueRelationType
impl Ord for IssueRelationType
Source§fn cmp(&self, other: &IssueRelationType) -> Ordering
fn cmp(&self, other: &IssueRelationType) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for IssueRelationType
impl PartialEq for IssueRelationType
Source§impl PartialOrd for IssueRelationType
impl PartialOrd for IssueRelationType
Source§impl Serialize for IssueRelationType
impl Serialize for IssueRelationType
impl Eq for IssueRelationType
impl StructuralPartialEq for IssueRelationType
Auto Trait Implementations§
impl Freeze for IssueRelationType
impl RefUnwindSafe for IssueRelationType
impl Send for IssueRelationType
impl Sync for IssueRelationType
impl Unpin for IssueRelationType
impl UnwindSafe for IssueRelationType
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