pub struct CreateNodeWalletAddressOutput {
pub node: EntityWrapper,
pub wallet_address: String,
pub multisig_wallet_address_validation_parameters: Option<MultiSigAddressValidationParameters>,
}Fields§
§node: EntityWrapper§wallet_address: String§multisig_wallet_address_validation_parameters: Option<MultiSigAddressValidationParameters>Vaildation parameters for the 2-of-2 multisig address. None if the address is not a 2-of-2 multisig address.
Trait Implementations§
Source§impl Clone for CreateNodeWalletAddressOutput
impl Clone for CreateNodeWalletAddressOutput
Source§fn clone(&self) -> CreateNodeWalletAddressOutput
fn clone(&self) -> CreateNodeWalletAddressOutput
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 CreateNodeWalletAddressOutput
impl<'de> Deserialize<'de> for CreateNodeWalletAddressOutput
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
Auto Trait Implementations§
impl Freeze for CreateNodeWalletAddressOutput
impl RefUnwindSafe for CreateNodeWalletAddressOutput
impl Send for CreateNodeWalletAddressOutput
impl Sync for CreateNodeWalletAddressOutput
impl Unpin for CreateNodeWalletAddressOutput
impl UnwindSafe for CreateNodeWalletAddressOutput
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