pub struct UnifiedVerifyCommand {
pub target: String,
pub allowed_signers: PathBuf,
pub identity_bundle: Option<PathBuf>,
pub issuer_pk: Option<String>,
pub issuer_did: Option<String>,
pub witness_receipts: Option<PathBuf>,
pub witness_threshold: usize,
pub witness_keys: Vec<String>,
}Expand description
Unified verify command: verifies a signed commit or an attestation.
Fields§
§target: StringGit ref, commit hash, range (e.g. HEAD, abc1234, main..HEAD), or path to an attestation JSON file / “-” for stdin.
allowed_signers: PathBufPath to allowed signers file (commit verification).
identity_bundle: Option<PathBuf>Path to identity bundle JSON (for CI/CD stateless commit verification).
issuer_pk: Option<String>Issuer public key in hex format (attestation verification).
issuer_did: Option<String>Issuer identity ID for attestation trust-based key resolution.
witness_receipts: Option<PathBuf>Path to witness receipts JSON file.
witness_threshold: usizeWitness quorum threshold.
witness_keys: Vec<String>Witness public keys as DID:hex pairs.
Trait Implementations§
Source§impl Args for UnifiedVerifyCommand
impl Args for UnifiedVerifyCommand
Source§fn augment_args<'b>(__clap_app: Command) -> Command
fn augment_args<'b>(__clap_app: Command) -> Command
Source§fn augment_args_for_update<'b>(__clap_app: Command) -> Command
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 moreSource§impl Clone for UnifiedVerifyCommand
impl Clone for UnifiedVerifyCommand
Source§fn clone(&self) -> UnifiedVerifyCommand
fn clone(&self) -> UnifiedVerifyCommand
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 UnifiedVerifyCommand
impl Debug for UnifiedVerifyCommand
Source§impl FromArgMatches for UnifiedVerifyCommand
impl FromArgMatches for UnifiedVerifyCommand
Source§fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
Source§fn from_arg_matches_mut(
__clap_arg_matches: &mut ArgMatches,
) -> Result<Self, Error>
fn from_arg_matches_mut( __clap_arg_matches: &mut ArgMatches, ) -> Result<Self, Error>
Source§fn update_from_arg_matches(
&mut self,
__clap_arg_matches: &ArgMatches,
) -> Result<(), Error>
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>
fn update_from_arg_matches_mut( &mut self, __clap_arg_matches: &mut ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches to self.Source§impl Parser for UnifiedVerifyCommand
impl Parser for UnifiedVerifyCommand
Source§fn parse_from<I, T>(itr: I) -> Self
fn parse_from<I, T>(itr: I) -> Self
Parse from iterator, exit on error.
Source§fn try_parse_from<I, T>(itr: I) -> Result<Self, Error>
fn try_parse_from<I, T>(itr: I) -> Result<Self, Error>
Parse from iterator, return Err on error.
Source§fn update_from<I, T>(&mut self, itr: I)
fn update_from<I, T>(&mut self, itr: I)
Auto Trait Implementations§
impl Freeze for UnifiedVerifyCommand
impl RefUnwindSafe for UnifiedVerifyCommand
impl Send for UnifiedVerifyCommand
impl Sync for UnifiedVerifyCommand
impl Unpin for UnifiedVerifyCommand
impl UnsafeUnpin for UnifiedVerifyCommand
impl UnwindSafe for UnifiedVerifyCommand
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