pub struct AppResponseEmbeddedWalletConfigEthereum {
pub create_on_login: AppResponseEmbeddedWalletConfigEthereumCreateOnLogin,
}Expand description
AppResponseEmbeddedWalletConfigEthereum
JSON schema
{
"type": "object",
"required": [
"create_on_login"
],
"properties": {
"create_on_login": {
"type": "string",
"enum": [
"all-users",
"off",
"users-without-wallets"
]
}
}
}Fields§
§create_on_login: AppResponseEmbeddedWalletConfigEthereumCreateOnLoginTrait Implementations§
Source§impl Clone for AppResponseEmbeddedWalletConfigEthereum
impl Clone for AppResponseEmbeddedWalletConfigEthereum
Source§fn clone(&self) -> AppResponseEmbeddedWalletConfigEthereum
fn clone(&self) -> AppResponseEmbeddedWalletConfigEthereum
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 AppResponseEmbeddedWalletConfigEthereum
impl<'de> Deserialize<'de> for AppResponseEmbeddedWalletConfigEthereum
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<AppResponseEmbeddedWalletConfigEthereum, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<AppResponseEmbeddedWalletConfigEthereum, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&AppResponseEmbeddedWalletConfigEthereum> for AppResponseEmbeddedWalletConfigEthereum
impl From<&AppResponseEmbeddedWalletConfigEthereum> for AppResponseEmbeddedWalletConfigEthereum
Source§fn from(
value: &AppResponseEmbeddedWalletConfigEthereum,
) -> AppResponseEmbeddedWalletConfigEthereum
fn from( value: &AppResponseEmbeddedWalletConfigEthereum, ) -> AppResponseEmbeddedWalletConfigEthereum
Converts to this type from the input type.
Source§impl Serialize for AppResponseEmbeddedWalletConfigEthereum
impl Serialize for AppResponseEmbeddedWalletConfigEthereum
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 AppResponseEmbeddedWalletConfigEthereum
impl RefUnwindSafe for AppResponseEmbeddedWalletConfigEthereum
impl Send for AppResponseEmbeddedWalletConfigEthereum
impl Sync for AppResponseEmbeddedWalletConfigEthereum
impl Unpin for AppResponseEmbeddedWalletConfigEthereum
impl UnwindSafe for AppResponseEmbeddedWalletConfigEthereum
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