Skip to main content

VerifiedQuestionAnswer

Struct VerifiedQuestionAnswer 

Source
pub struct VerifiedQuestionAnswer {
    pub call_id: String,
    pub index: u32,
    pub question_args_json: String,
    pub state: String,
    pub selected_index: Option<u32>,
    pub selected_label: String,
    pub answered_by: String,
    pub conversation_id: String,
    pub nonce: String,
    pub signer_public_key: Vec<u8>,
    pub signer_pk_hex: String,
    pub signature_hex: String,
}
Expand description

A verified, decoded question_response payload.

Fields§

§call_id: String

The ask_question tool-call id this answer resolves.

§index: u32

This answer’s question index within its call’s questions array.

§question_args_json: String

The bound raw ask_question call arguments (every question in the call) — the audit binding Self::binds_question matches byte-for-byte.

§state: String§selected_index: Option<u32>

The chosen option’s index, when state == ANSWERED_STATE or AUTO_RESOLVED_STATE. None for a decline.

§selected_label: String

The chosen option’s label, mirrored alongside the index so a consumer never has to re-resolve it against the (possibly since-compacted) original question payload.

§answered_by: String

Who answered — empty for AUTO_RESOLVED_STATE (nobody did).

§conversation_id: String

The conversation this answer was signed for, covered by the signature so a token signed for one conversation cannot be replayed into another.

§nonce: String

Per-answer unique value, covered by the signature. A consumer records it on use so the answer cannot be re-applied once spent (single-use, mirrors #370).

§signer_public_key: Vec<u8>

The verified signer’s public key (encoded).

§signer_pk_hex: String

Hex-encoded ed25519 public key of the signer — the same bytes as Self::signer_public_key, kept alongside it in the wire-ready encoding so a consumer forwarding this answer onward (the control plane’s outstanding-answer collector, to the harness) never re-derives the hex itself. Mirrors polyc_crypto::approval::DecodedResponse::signer_pk_hex.

§signature_hex: String

Hex-encoded ed25519 signature over the canonical answer tuple — forwarded onward so the harness can independently re-verify (THIN signing) rather than trust the control plane’s own verification. Mirrors polyc_crypto::approval::DecodedResponse::signature_hex.

Implementations§

Source§

impl VerifiedQuestionAnswer

Source

pub fn binds_question( &self, call_id: &str, index: u32, question_args_json: &str, ) -> bool

Whether this verified answer is bound to the EXACT question (call_id, index, question_args_json) — the args-binding a resume path must check before applying the answer, mirroring crate::approval::VerifiedResponse::authorizes_call.

Trait Implementations§

Source§

impl Clone for VerifiedQuestionAnswer

Source§

fn clone(&self) -> VerifiedQuestionAnswer

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 VerifiedQuestionAnswer

Source§

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

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

impl Eq for VerifiedQuestionAnswer

Source§

impl PartialEq for VerifiedQuestionAnswer

Source§

fn eq(&self, other: &VerifiedQuestionAnswer) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for VerifiedQuestionAnswer

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<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

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<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
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<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> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

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 = 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<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

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