pub enum AnnotationKind {
Primary,
Secondary,
}Expand description
Represents the kind of annotation associated with an issue.
Variants§
Primary
A primary annotation, typically highlighting the main source of the issue.
Secondary
A secondary annotation, providing additional context or related information.
Trait Implementations§
Source§impl Clone for AnnotationKind
impl Clone for AnnotationKind
Source§fn clone(&self) -> AnnotationKind
fn clone(&self) -> AnnotationKind
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 AnnotationKind
impl Debug for AnnotationKind
Source§impl<'de> Deserialize<'de> for AnnotationKind
impl<'de> Deserialize<'de> for AnnotationKind
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<AnnotationKind> for LabelStyle
impl From<AnnotationKind> for LabelStyle
Source§fn from(kind: AnnotationKind) -> LabelStyle
fn from(kind: AnnotationKind) -> LabelStyle
Converts to this type from the input type.
Source§impl Hash for AnnotationKind
impl Hash for AnnotationKind
Source§impl Ord for AnnotationKind
impl Ord for AnnotationKind
Source§fn cmp(&self, other: &AnnotationKind) -> Ordering
fn cmp(&self, other: &AnnotationKind) -> 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 AnnotationKind
impl PartialEq for AnnotationKind
Source§impl PartialOrd for AnnotationKind
impl PartialOrd for AnnotationKind
Source§impl Serialize for AnnotationKind
impl Serialize for AnnotationKind
impl Copy for AnnotationKind
impl Eq for AnnotationKind
impl StructuralPartialEq for AnnotationKind
Auto Trait Implementations§
impl Freeze for AnnotationKind
impl RefUnwindSafe for AnnotationKind
impl Send for AnnotationKind
impl Sync for AnnotationKind
impl Unpin for AnnotationKind
impl UnwindSafe for AnnotationKind
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