pub struct TransferValidatorStakeV1 {
pub fee: u64,
pub hash: String,
pub new_address: String,
pub new_owner: String,
pub new_owner_signature: Option<String>,
pub old_address: String,
pub old_owner: String,
pub old_owner_signature: String,
pub payment_amount: Hnt,
pub stake_amount: Hnt,
}
Fields§
§fee: u64
§hash: String
§new_address: String
§new_owner: String
§new_owner_signature: Option<String>
§old_address: String
§old_owner: String
§old_owner_signature: String
§payment_amount: Hnt
§stake_amount: Hnt
Trait Implementations§
Source§impl Clone for TransferValidatorStakeV1
impl Clone for TransferValidatorStakeV1
Source§fn clone(&self) -> TransferValidatorStakeV1
fn clone(&self) -> TransferValidatorStakeV1
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 TransferValidatorStakeV1
impl Debug for TransferValidatorStakeV1
Source§impl<'de> Deserialize<'de> for TransferValidatorStakeV1
impl<'de> Deserialize<'de> for TransferValidatorStakeV1
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 TransferValidatorStakeV1
impl RefUnwindSafe for TransferValidatorStakeV1
impl Send for TransferValidatorStakeV1
impl Sync for TransferValidatorStakeV1
impl Unpin for TransferValidatorStakeV1
impl UnwindSafe for TransferValidatorStakeV1
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