pub struct Web3Wallet {
pub id: Option<String>,
pub object: Object,
pub web3_wallet: String,
pub verification: Option<Box<Web3WalletVerification>>,
}
Fields§
§id: Option<String>
§object: Object
String representing the object’s type. Objects of the same type share the same value.
web3_wallet: String
§verification: Option<Box<Web3WalletVerification>>
Implementations§
Source§impl Web3Wallet
impl Web3Wallet
pub fn new( object: Object, web3_wallet: String, verification: Option<Web3WalletVerification>, ) -> Web3Wallet
Trait Implementations§
Source§impl Clone for Web3Wallet
impl Clone for Web3Wallet
Source§fn clone(&self) -> Web3Wallet
fn clone(&self) -> Web3Wallet
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 Web3Wallet
impl Debug for Web3Wallet
Source§impl<'de> Deserialize<'de> for Web3Wallet
impl<'de> Deserialize<'de> for Web3Wallet
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 PartialEq for Web3Wallet
impl PartialEq for Web3Wallet
Source§impl Serialize for Web3Wallet
impl Serialize for Web3Wallet
impl StructuralPartialEq for Web3Wallet
Auto Trait Implementations§
impl Freeze for Web3Wallet
impl RefUnwindSafe for Web3Wallet
impl Send for Web3Wallet
impl Sync for Web3Wallet
impl Unpin for Web3Wallet
impl UnwindSafe for Web3Wallet
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