Skip to main content

ReleaseArgs

Struct ReleaseArgs 

Source
pub struct ReleaseArgs {
    pub release_version: Option<String>,
    pub release_commit: Option<String>,
    pub receipts_commit: Option<String>,
    pub receipts: Option<PathBuf>,
    pub kernel_receipts: Option<PathBuf>,
    pub dogfood_receipt: Option<PathBuf>,
    pub tokenizer_receipts: Option<PathBuf>,
}
Expand description

aprender#3715 — the release subject extract:release-evidence reads, for pv lint --gate shapes and pv extract. All absent → no release graph. --release-version and --release-commit come together; the rest need them.

Fields§

§release_version: Option<String>

The release version whose evidence release-readiness-v1 grades

§release_commit: Option<String>

The release commit (MC), full 40-hex: the dogfood receipt’s commit, and the receipts’ unless –receipts-commit

§receipts_commit: Option<String>

T-4 only: the sha the committed receipts were measured at, after R7 proved the tree equal modulo evidence/

§receipts: Option<PathBuf>

The per-host model receipts (default: evidence/dogfood/models//)

§kernel_receipts: Option<PathBuf>

The per-host kernel-diff receipts (default: evidence/dogfood/kernels//)

§dogfood_receipt: Option<PathBuf>

The dogfood receipt R5 judged (without it the release has no dogfood receipt, which is a violation)

§tokenizer_receipts: Option<PathBuf>

The tokenizer-parity receipts, apr vs the pinned llama.cpp (default: evidence/dogfood/tokenizer//)

Implementations§

Source§

impl ReleaseArgs

Source

pub fn any(&self) -> bool

Did the caller pass any release flag at all?

Source

pub fn subject(&self) -> Result<Option<Subject>, String>

The subject, or None when no flag was passed. A partial set is refused, never completed by a default.

Trait Implementations§

Source§

impl Args for ReleaseArgs

Source§

fn group_id() -> Option<Id>

Report the ArgGroup::id for this set of arguments
Source§

fn augment_args<'b>(__clap_app: Command) -> Command

Append to Command so it can instantiate Self via FromArgMatches::from_arg_matches_mut Read more
Source§

fn augment_args_for_update<'b>(__clap_app: Command) -> Command

Append to Command so it can instantiate self via FromArgMatches::update_from_arg_matches_mut Read more
Source§

impl Clone for ReleaseArgs

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 Debug for ReleaseArgs

Source§

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

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

impl Default for ReleaseArgs

Source§

fn default() -> Self

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

impl FromArgMatches for ReleaseArgs

Source§

fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>

Instantiate Self from ArgMatches, parsing the arguments as needed. Read more
Source§

fn from_arg_matches_mut( __clap_arg_matches: &mut ArgMatches, ) -> Result<Self, Error>

Instantiate Self from ArgMatches, parsing the arguments as needed. Read more
Source§

fn update_from_arg_matches( &mut self, __clap_arg_matches: &ArgMatches, ) -> Result<(), Error>

Assign values from ArgMatches to self.
Source§

fn update_from_arg_matches_mut( &mut self, __clap_arg_matches: &mut ArgMatches, ) -> Result<(), Error>

Assign values from ArgMatches to 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, 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, 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.