Skip to main content

PayeeClaimStatus

Struct PayeeClaimStatus 

Source
pub struct PayeeClaimStatus {
    pub subject: PayeeSubject,
    pub claim_log: ClaimLogObservation,
}
Expand description

Result for dig.getPayeeRewardClaimStatus — the claim-side posture of the node answering, as a payee.

§The subject is on the wire, not inferred from the endpoint

subject is required and is the literal "payee". It is not redundant with the method name: this epic shipped a defect in which a funder’s distributor-wide total was rendered to a payee as that operator’s own earnings, overstating by up to 250x, and it passed security review and a full green CI because no test asserted whose money the number was. A renderer that reads subject off the payload cannot make that substitution silently; one that infers the subject from which endpoint it thinks it called can.

§No monetary amount, at all

There is deliberately no amount field here — not optional, not nullable, absent. A payload that carries no amount has nothing a UI can misrender as earnings, and that absence is the whole defence; an Option<u64> would not be, because the misrendering path is a present number attributed to the wrong party. A payee that wants its own settled history reads its own past InitiatePayout spends, which are on chain and are evidence (SPEC §12.5 clause 7). The payout puzzle hash is likewise absent and MUST NOT be added: it is the payee’s payment identity, and nothing here needs it.

§No #[serde(default)], no skip_serializing_if

Every field is required on the wire in both directions. A defaulting field is a field a producer can omit and a consumer will invent — which for subject would restore exactly the inferred-subject hazard above, and for claim_log would manufacture a consultation nobody performed.

Fields§

§subject: PayeeSubject

Always PayeeSubject::Payee; serialises as the literal "subject": "payee".

§claim_log: ClaimLogObservation

This node’s claim log: read, with the count it held, or not read at all.

The count lives inside the observation so it cannot be separated from the fact that something read the log. The reader derives staleness itself from the observation’s observed_at and its own clock (SPEC §2.4); no staleness is pre-computed here.

Trait Implementations§

Source§

impl Clone for PayeeClaimStatus

Source§

fn clone(&self) -> PayeeClaimStatus

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 Copy for PayeeClaimStatus

Source§

impl Debug for PayeeClaimStatus

Source§

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

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

impl<'de> Deserialize<'de> for PayeeClaimStatus

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Eq for PayeeClaimStatus

Source§

impl PartialEq for PayeeClaimStatus

Source§

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

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

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

Inequality operator !=. Read more
Source§

impl Serialize for PayeeClaimStatus

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for PayeeClaimStatus

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> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

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> 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.