pub struct PaymentPayload {
pub x402_version: X402V2,
pub resource: PaymentResource,
pub accepted: PaymentRequirements,
pub payload: Value,
pub extensions: HashMap<String, Extension>,
}Fields§
§x402_version: X402V2§resource: PaymentResource§accepted: PaymentRequirements§payload: Value§extensions: HashMap<String, Extension>Trait Implementations§
Source§impl Clone for PaymentPayload
impl Clone for PaymentPayload
Source§fn clone(&self) -> PaymentPayload
fn clone(&self) -> PaymentPayload
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 PaymentPayload
impl Debug for PaymentPayload
Source§impl<'de> Deserialize<'de> for PaymentPayload
impl<'de> Deserialize<'de> for PaymentPayload
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<PaymentPayload, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<PaymentPayload, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for PaymentPayload
impl Serialize for PaymentPayload
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Source§impl TryFrom<Base64EncodedHeader> for PaymentPayload
impl TryFrom<Base64EncodedHeader> for PaymentPayload
Source§fn try_from(
value: Base64EncodedHeader,
) -> Result<PaymentPayload, <PaymentPayload as TryFrom<Base64EncodedHeader>>::Error>
fn try_from( value: Base64EncodedHeader, ) -> Result<PaymentPayload, <PaymentPayload as TryFrom<Base64EncodedHeader>>::Error>
Deserialize PAYMENT-SIGNATURE header into PaymentPayload
Source§impl TryFrom<PaymentPayload> for Base64EncodedHeader
impl TryFrom<PaymentPayload> for Base64EncodedHeader
Source§fn try_from(
value: PaymentPayload,
) -> Result<Base64EncodedHeader, <Base64EncodedHeader as TryFrom<PaymentPayload>>::Error>
fn try_from( value: PaymentPayload, ) -> Result<Base64EncodedHeader, <Base64EncodedHeader as TryFrom<PaymentPayload>>::Error>
Serialize PaymentPayload into PAYMENT-SIGNATURE header format
Auto Trait Implementations§
impl Freeze for PaymentPayload
impl RefUnwindSafe for PaymentPayload
impl Send for PaymentPayload
impl Sync for PaymentPayload
impl Unpin for PaymentPayload
impl UnwindSafe for PaymentPayload
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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