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<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<&AppResponseEmbeddedWalletConfigEthereum> for AppResponseEmbeddedWalletConfigEthereum
impl From<&AppResponseEmbeddedWalletConfigEthereum> for AppResponseEmbeddedWalletConfigEthereum
Source§fn from(value: &AppResponseEmbeddedWalletConfigEthereum) -> Self
fn from(value: &AppResponseEmbeddedWalletConfigEthereum) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AppResponseEmbeddedWalletConfigEthereum
impl RefUnwindSafe for AppResponseEmbeddedWalletConfigEthereum
impl Send for AppResponseEmbeddedWalletConfigEthereum
impl Sync for AppResponseEmbeddedWalletConfigEthereum
impl Unpin for AppResponseEmbeddedWalletConfigEthereum
impl UnsafeUnpin 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