Skip to main content

IssueKindMeta

Struct IssueKindMeta 

Source
pub struct IssueKindMeta {
    pub kind: Option<IssueKind>,
    pub code: &'static str,
    pub aliases: &'static [&'static str],
    pub label: &'static str,
    pub config_key: Option<&'static str>,
    pub filter_flag: Option<&'static str>,
    pub mcp_issue_type: Option<&'static str>,
    pub suppress_token: Option<&'static str>,
    pub suppress_file_level: bool,
    pub lsp: bool,
    pub docs_category: &'static str,
}
Expand description

Shared contract facts for issue-like diagnostics.

Curated prose stays with the surface that owns it. This table is only for stable machine-facing facts that otherwise drift across CLI schema, LSP, MCP, and suppression helpers.

Fields§

§kind: Option<IssueKind>

Backing suppression issue kind, when this row maps to one.

§code: &'static str

Canonical issue code used in output and diagnostic codes.

§aliases: &'static [&'static str]

Accepted aliases for config, suppression, or migration compatibility.

§label: &'static str

User-facing label for editor and capability surfaces.

§config_key: Option<&'static str>

Canonical [rules] key when the issue is configurable.

§filter_flag: Option<&'static str>

Dead-code CLI filter flag, when one exists.

§mcp_issue_type: Option<&'static str>

MCP issue_types selector, when this issue can be selected there.

§suppress_token: Option<&'static str>

Suppression token agents should emit, when suppressible.

§suppress_file_level: bool

Whether the suppression comment should use fallow-ignore-file.

§lsp: bool

Whether the LSP exposes this row through initialization options and fallow/issueTypes.

§docs_category: &'static str

Broad documentation category for authoring and generated manifests.

Implementations§

Source§

impl IssueKindMeta

Source

pub const fn mcp_pair(self) -> Option<(&'static str, &'static str)>

Return the filter flag as an MCP selector pair.

Source

pub fn has_result_contract(self) -> bool

Whether this row owns a serialized dead-code result contract.

Source

pub fn sarif_rule_ids(self) -> Vec<String>

SARIF rule ids used by CI formatters for this issue row.

Source

pub fn codeclimate_check_names(self) -> Vec<String>

CodeClimate check names used by CI formatters for this issue row.

Source

pub fn docs_anchor(self) -> Option<&'static str>

Documentation anchor under /explanations/dead-code.

Source

pub fn ts_alias(self) -> Option<TsAliasMeta>

Published TypeScript backwards-compat alias policy.

Trait Implementations§

Source§

impl Clone for IssueKindMeta

Source§

fn clone(&self) -> Self

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for IssueKindMeta

Source§

impl Debug for IssueKindMeta

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Eq for IssueKindMeta

Source§

impl PartialEq for IssueKindMeta

Source§

fn eq(&self, other: &Self) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for IssueKindMeta

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<'a, T> FromIn<'a, T> for T

Source§

fn from_in(t: T, _: &'a Allocator) -> T

Converts to this type from the input type within the given allocator.
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<'a, T, U> IntoIn<'a, U> for T
where U: FromIn<'a, T>,

Source§

fn into_in(self, allocator: &'a Allocator) -> U

Converts this type into the (usually inferred) input type within the given allocator.
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.