Skip to main content

GateCommands

Struct GateCommands 

Source
pub struct GateCommands<'a> {
    pub test_command: Option<&'a str>,
    pub lint_command: Option<&'a str>,
    pub build_command: Option<&'a str>,
    pub doc_build_command: Option<&'a str>,
    pub spec_validate_command: Option<&'a str>,
    pub fmt_check_command: Option<&'a str>,
    pub security_audit_command: Option<&'a str>,
    pub doc_tool_command: Option<&'a str>,
}
Expand description

Borrowed view of the seven gate-command templates substituted by render into the supervisor skill.

Each field maps to a {{...}} placeholder in the skill template (see render for the full list). None renders as the literal (not configured) so the rendered prose stays readable and the supervisor agent can machine-check the value to decide whether to skip the tooling invocation for that gate.

{{CHANGE_ID}} is NOT a field here: it is a per-invocation placeholder substituted by the supervisor agent at verification time (using the change being audited), not by render at session boot.

Use SupervisorConfig::gate_commands to build one from a config.

Fields§

§test_command: Option<&'a str>

Renders into {{TEST_COMMAND}}. Gate 1 test runner.

§lint_command: Option<&'a str>

Renders into {{LINT_COMMAND}}. Gate 1 lint sub-step.

§build_command: Option<&'a str>

Renders into {{BUILD_COMMAND}}. Gate 1 build sub-step.

§doc_build_command: Option<&'a str>

Renders into {{DOC_BUILD_COMMAND}}. Gate 4 doc builder.

§spec_validate_command: Option<&'a str>

Renders into {{SPEC_VALIDATE_COMMAND}}. Gate 3 spec validator. MAY contain a {{CHANGE_ID}} substring that the supervisor agent expands at verification time — render does NOT substitute it.

§fmt_check_command: Option<&'a str>

Renders into {{FMT_CHECK_COMMAND}}. Gate 1 format check.

§security_audit_command: Option<&'a str>

Renders into {{SECURITY_AUDIT_COMMAND}}. Gate 5 security tooling.

§doc_tool_command: Option<&'a str>

Renders into {{DOC_TOOL_COMMAND}}. Gate 4 API-doc generator, distinct from Self::doc_build_command which builds the human doc site. None renders as an empty string so the surrounding prose can read naturally without a stray (not configured) token — the supervisor template is authored to handle the empty case.

Trait Implementations§

Source§

impl<'a> Clone for GateCommands<'a>

Source§

fn clone(&self) -> GateCommands<'a>

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<'a> Copy for GateCommands<'a>

Source§

impl<'a> Debug for GateCommands<'a>

Source§

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

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

impl<'a> Default for GateCommands<'a>

Source§

fn default() -> GateCommands<'a>

Returns the “default value” for a type. Read more

Auto Trait Implementations§

§

impl<'a> Freeze for GateCommands<'a>

§

impl<'a> RefUnwindSafe for GateCommands<'a>

§

impl<'a> Send for GateCommands<'a>

§

impl<'a> Sync for GateCommands<'a>

§

impl<'a> Unpin for GateCommands<'a>

§

impl<'a> UnsafeUnpin for GateCommands<'a>

§

impl<'a> UnwindSafe for GateCommands<'a>

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> DynClone for T
where T: Clone,

Source§

fn __clone_box(&self, _: Private) -> *mut ()

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

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

Source§

fn from_ref(input: &T) -> T

Converts to this type from a reference to the input type.
Source§

impl<A, B, T> HttpServerConnExec<A, B> for T
where B: Body,

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

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
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 = Infallible

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