pub struct VerifyCommitCommand {
pub commit: String,
pub witness_receipts: Option<PathBuf>,
pub witness_threshold: usize,
pub witness_keys: Vec<String>,
pub require_witnesses: bool,
pub identity_bundle: Option<PathBuf>,
}Fields§
§commit: StringCommit SHA, range (e.g., HEAD~5..HEAD), or “HEAD” (default).
witness_receipts: Option<PathBuf>Path to witness signatures JSON file.
witness_threshold: usizeNumber of witnesses required (default: 1).
witness_keys: Vec<String>Witness public keys as DID:hex pairs (e.g., “did:key:z6Mk…:abcd1234…”).
require_witnesses: boolFail verification when the signer’s root KEL has not reached witness quorum (fail-closed). Default: warn and continue (trust-on-first-sight).
identity_bundle: Option<PathBuf>Path to an identity bundle JSON whose root did:keri: is pinned as a trusted
root for this verification (CI/stateless commit verification). The bundle is
freshness-checked; an unreadable or stale bundle fails closed. When absent,
a committed .auths/ci-bundle.json at the repo root is discovered and used
the same way — that is how a plain clone verifies with no flags.
Trait Implementations§
Source§impl Args for VerifyCommitCommand
impl Args for VerifyCommitCommand
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 VerifyCommitCommand
impl Clone for VerifyCommitCommand
Source§fn clone(&self) -> VerifyCommitCommand
fn clone(&self) -> VerifyCommitCommand
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl CommandFactory for VerifyCommitCommand
impl CommandFactory for VerifyCommitCommand
Source§impl Debug for VerifyCommitCommand
impl Debug for VerifyCommitCommand
Source§impl FromArgMatches for VerifyCommitCommand
impl FromArgMatches for VerifyCommitCommand
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 VerifyCommitCommand
impl Parser for VerifyCommitCommand
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 VerifyCommitCommand
impl RefUnwindSafe for VerifyCommitCommand
impl Send for VerifyCommitCommand
impl Sync for VerifyCommitCommand
impl Unpin for VerifyCommitCommand
impl UnsafeUnpin for VerifyCommitCommand
impl UnwindSafe for VerifyCommitCommand
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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