pub struct AlchemyPaymasterContext {
pub policy_id: Uuid,
}Expand description
The Alchemy paymaster context for a smart wallet network configuration.
JSON schema
{
"title": "AlchemyPaymasterContext",
"description": "The Alchemy paymaster context for a smart wallet
network configuration.",
"type": "object",
"required": [
"policy_id"
],
"properties": {
"policy_id": {
"type": "string",
"format": "uuid"
}
},
"x-stainless-model": "embedded_wallets.alchemy_paymaster_context"
}Fields§
§policy_id: UuidTrait Implementations§
Source§impl Clone for AlchemyPaymasterContext
impl Clone for AlchemyPaymasterContext
Source§fn clone(&self) -> AlchemyPaymasterContext
fn clone(&self) -> AlchemyPaymasterContext
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 Debug for AlchemyPaymasterContext
impl Debug for AlchemyPaymasterContext
Source§impl<'de> Deserialize<'de> for AlchemyPaymasterContext
impl<'de> Deserialize<'de> for AlchemyPaymasterContext
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
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 From<&AlchemyPaymasterContext> for AlchemyPaymasterContext
impl From<&AlchemyPaymasterContext> for AlchemyPaymasterContext
Source§fn from(value: &AlchemyPaymasterContext) -> Self
fn from(value: &AlchemyPaymasterContext) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AlchemyPaymasterContext
impl RefUnwindSafe for AlchemyPaymasterContext
impl Send for AlchemyPaymasterContext
impl Sync for AlchemyPaymasterContext
impl Unpin for AlchemyPaymasterContext
impl UnsafeUnpin for AlchemyPaymasterContext
impl UnwindSafe for AlchemyPaymasterContext
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