pub struct SnsNeuronAccount {
pub owner: Option<String>,
pub subaccount_hex: Option<String>,
}Expand description
SnsNeuronAccount
Native optional destination account retained for a pending maturity disbursement.
Fields§
§owner: Option<String>Canonical destination owner when Governance supplied one.
subaccount_hex: Option<String>Native destination subaccount encoded as lowercase hexadecimal when supplied.
Trait Implementations§
Source§impl Clone for SnsNeuronAccount
impl Clone for SnsNeuronAccount
Source§fn clone(&self) -> SnsNeuronAccount
fn clone(&self) -> SnsNeuronAccount
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SnsNeuronAccount
impl Debug for SnsNeuronAccount
Source§impl<'de> Deserialize<'de> for SnsNeuronAccount
impl<'de> Deserialize<'de> for SnsNeuronAccount
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
impl Eq for SnsNeuronAccount
Source§impl PartialEq for SnsNeuronAccount
impl PartialEq for SnsNeuronAccount
Source§impl Serialize for SnsNeuronAccount
impl Serialize for SnsNeuronAccount
impl StructuralPartialEq for SnsNeuronAccount
Auto Trait Implementations§
impl Freeze for SnsNeuronAccount
impl RefUnwindSafe for SnsNeuronAccount
impl Send for SnsNeuronAccount
impl Sync for SnsNeuronAccount
impl Unpin for SnsNeuronAccount
impl UnsafeUnpin for SnsNeuronAccount
impl UnwindSafe for SnsNeuronAccount
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