Skip to main content

GateId

Enum GateId 

Source
pub enum GateId {
Show 23 variants AdrFilenameShape, AdrWordCap, AgentsDigestSize, ChapterSizeCap, ComparisonDatedTables, ComparisonEscapedPipes, ComparisonLegend, ComparisonOneReferencePerCell, ComparisonVerdictWord, GateMessageCitesARule, InstanceManifest, KiBugzillaReportWidth, KiFilenameShape, KiMechanismWalkthrough, KiReportBody, KiRetireWhen, NoSelfNarration, ProseStaysUnwrapped, SpecRequirementParts, SpecRuleIdUnique, SpecSizeCap, SpecVerifyHooksExist, SuppressionNamesItsCase,
}
Expand description

A delivered gate, addressable as sdd gate <id> and as a pre-commit hook id.

Variants§

§

AdrFilenameShape

Decision record filenames are dated-free slugs.

§

AdrWordCap

Decision record bodies stay within the word cap.

§

AgentsDigestSize

Agent digests stay within their line budgets.

§

ChapterSizeCap

Chapters and catalogs stay within their line caps.

§

ComparisonDatedTables

Comparison tables carry a verification date.

§

ComparisonEscapedPipes

Comparison table pipes are escaped inside cells.

§

ComparisonLegend

Comparison documents carry a legend.

§

ComparisonOneReferencePerCell

Comparison cells carry at most one reference.

§

ComparisonVerdictWord

Comparison verdicts carry their word.

§

GateMessageCitesARule

Every rule ID a gate can print resolves to a local requirement.

§

InstanceManifest

The instance manifest is present and coherent.

§

KiBugzillaReportWidth

Bugzilla-bound report bodies fit the tracker’s width.

§

KiFilenameShape

Known-issue filenames are slugged case IDs.

§

KiMechanismWalkthrough

Known-issue records walk the mechanism.

§

KiReportBody

Filed known-issue records carry their report body.

§

KiRetireWhen

Known-issue records carry a retirement condition.

§

NoSelfNarration

Documents state the present rather than narrate their edits.

§

ProseStaysUnwrapped

Paragraphs occupy one source line rather than hard-wrap.

§

SpecRequirementParts

Spec requirements carry all five parts.

§

SpecRuleIdUnique

Rule IDs are unique across the local specs.

§

SpecSizeCap

Specs stay within their line cap and carry a TOC when long.

§

SpecVerifyHooksExist

Spec verification lines name hooks that exist.

§

SuppressionNamesItsCase

Suppression comments name a known-issue case.

Implementations§

Source§

impl GateId

Source

pub const ALL: &'static [Self]

Every delivered gate, in id order.

Source

pub const fn as_str(self) -> &'static str

The kebab-case id used on the command line and as the hook id.

Trait Implementations§

Source§

impl Clone for GateId

Source§

fn clone(&self) -> GateId

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 GateId

Source§

impl Debug for GateId

Source§

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

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

impl Display for GateId

Source§

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

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

impl Eq for GateId

Source§

impl FromStr for GateId

Source§

type Err = String

The associated error which can be returned from parsing.
Source§

fn from_str(s: &str) -> Result<Self, Self::Err>

Parses a string s to return a value of this type. Read more
Source§

impl Hash for GateId

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl Ord for GateId

Source§

fn cmp(&self, other: &GateId) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 (const: unstable) · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 (const: unstable) · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 (const: unstable) · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl PartialEq for GateId

Source§

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

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

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

Inequality operator !=. Read more
Source§

impl PartialOrd for GateId

Source§

fn partial_cmp(&self, other: &GateId) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 (const: unstable) · Source§

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

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 (const: unstable) · Source§

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

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 (const: unstable) · Source§

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

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 (const: unstable) · Source§

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

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl StructuralPartialEq for GateId

Source§

impl ValueEnum for GateId

Source§

fn value_variants<'a>() -> &'a [Self]

All possible argument values, in display order.
Source§

fn to_possible_value<'a>(&self) -> Option<PossibleValue>

The canonical argument value. Read more
Source§

fn from_str(input: &str, ignore_case: bool) -> Result<Self, String>

Parse an argument into Self.

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<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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<T> Same for T

Source§

type Output = T

Should always be Self
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> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. 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, <T as TryFrom<U>>::Error>

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.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more