pub struct SmartWalletConfigurationInputVariant1ConfiguredNetworksItem {
pub bundler_url: Option<String>,
pub chain_id: SmartWalletConfigurationInputVariant1ConfiguredNetworksItemChainId,
pub chain_name: Option<String>,
pub paymaster_context: Option<SmartWalletConfigurationInputVariant1ConfiguredNetworksItemPaymasterContext>,
pub paymaster_url: Option<String>,
pub rpc_url: Option<String>,
}Expand description
SmartWalletConfigurationInputVariant1ConfiguredNetworksItem
JSON schema
{
"type": "object",
"required": [
"chain_id"
],
"properties": {
"bundler_url": {
"type": "string"
},
"chain_id": {
"type": "string",
"pattern": "^eip155:\\d+$"
},
"chain_name": {
"type": "string"
},
"paymaster_context": {
"type": "object",
"required": [
"policy_id"
],
"properties": {
"policy_id": {
"type": "string",
"format": "uuid"
}
}
},
"paymaster_url": {
"type": "string"
},
"rpc_url": {
"type": "string"
}
}
}Fields§
§bundler_url: Option<String>§chain_id: SmartWalletConfigurationInputVariant1ConfiguredNetworksItemChainId§chain_name: Option<String>§paymaster_context: Option<SmartWalletConfigurationInputVariant1ConfiguredNetworksItemPaymasterContext>§paymaster_url: Option<String>§rpc_url: Option<String>Trait Implementations§
Source§impl Clone for SmartWalletConfigurationInputVariant1ConfiguredNetworksItem
impl Clone for SmartWalletConfigurationInputVariant1ConfiguredNetworksItem
Source§fn clone(&self) -> SmartWalletConfigurationInputVariant1ConfiguredNetworksItem
fn clone(&self) -> SmartWalletConfigurationInputVariant1ConfiguredNetworksItem
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<'de> Deserialize<'de> for SmartWalletConfigurationInputVariant1ConfiguredNetworksItem
impl<'de> Deserialize<'de> for SmartWalletConfigurationInputVariant1ConfiguredNetworksItem
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<SmartWalletConfigurationInputVariant1ConfiguredNetworksItem, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<SmartWalletConfigurationInputVariant1ConfiguredNetworksItem, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&SmartWalletConfigurationInputVariant1ConfiguredNetworksItem> for SmartWalletConfigurationInputVariant1ConfiguredNetworksItem
impl From<&SmartWalletConfigurationInputVariant1ConfiguredNetworksItem> for SmartWalletConfigurationInputVariant1ConfiguredNetworksItem
Source§fn from(
value: &SmartWalletConfigurationInputVariant1ConfiguredNetworksItem,
) -> SmartWalletConfigurationInputVariant1ConfiguredNetworksItem
fn from( value: &SmartWalletConfigurationInputVariant1ConfiguredNetworksItem, ) -> SmartWalletConfigurationInputVariant1ConfiguredNetworksItem
Converts to this type from the input type.
Source§impl Serialize for SmartWalletConfigurationInputVariant1ConfiguredNetworksItem
impl Serialize for SmartWalletConfigurationInputVariant1ConfiguredNetworksItem
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
Auto Trait Implementations§
impl Freeze for SmartWalletConfigurationInputVariant1ConfiguredNetworksItem
impl RefUnwindSafe for SmartWalletConfigurationInputVariant1ConfiguredNetworksItem
impl Send for SmartWalletConfigurationInputVariant1ConfiguredNetworksItem
impl Sync for SmartWalletConfigurationInputVariant1ConfiguredNetworksItem
impl Unpin for SmartWalletConfigurationInputVariant1ConfiguredNetworksItem
impl UnwindSafe for SmartWalletConfigurationInputVariant1ConfiguredNetworksItem
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