Skip to main content

Proven

Struct Proven 

Source
pub struct Proven<'a> { /* private fields */ }
Expand description

Proof that a PublishRequest’s identity has been established — RFC-ACDP-0003 §2.1 steps 1–8 (schema/hash validation, DID resolution, signature verification) plus the RFC-ACDP-0014 §5 step 2 self-revocation check, whichever of those the request’s context_type and the registry’s acdp_version require — but nothing has been persisted yet.

Produced only by a successful RegistryServer::prove_publish_identity / RegistryServer::prove_publish_identity_did_key / RegistryServer::prove_publish_identity_pinned call — there is no public constructor, so a caller cannot manufacture one from an unverified request. Not Clone: a Proven that outlived its single intended RegistryServer::commit_proven call risks being committed twice against different tenants/idempotency keys, so this is a move-only, “prove once, commit once” value.

Borrows req rather than owning a clone — the did:web caller already holds an owned request across its .await, and the did:key caller already clones into its blocking closure, so an owned Proven would force a needless clone on the async path for no benefit on the sync one.

Implementations§

Source§

impl<'a> Proven<'a>

Source

pub fn request(&self) -> &PublishRequest

The request this proof was established for.

Source

pub fn agent_id(&self) -> &AgentDid

The producer’s agent DID.

Source

pub fn key_fingerprint(&self) -> Option<&str>

The verified producer key’s fingerprint, when one was computed.

Computed only when the registry has a receipt signer configured (RFC-ACDP-0010) or req is a key-revocation subject to the RFC-ACDP-0014 §5 step 2 self-sign check — None otherwise, exactly mirroring the conditions the pre-Proven publish pipeline already used to decide whether fingerprinting was worth its cost.

Trait Implementations§

Source§

impl<'a> Debug for Proven<'a>

Source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'a> Freeze for Proven<'a>

§

impl<'a> RefUnwindSafe for Proven<'a>

§

impl<'a> Send for Proven<'a>

§

impl<'a> Sync for Proven<'a>

§

impl<'a> Unpin for Proven<'a>

§

impl<'a> UnsafeUnpin for Proven<'a>

§

impl<'a> UnwindSafe for Proven<'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> 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> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Sized + Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Sized + Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
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.
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