pub struct Stake {
pub amount: String,
pub fee: String,
pub deposit: bool,
pub timestamp: u32,
pub signature: String,
pub input_address: String,
pub hash: String,
}
Fields§
§amount: String
§fee: String
§deposit: bool
§timestamp: u32
§signature: String
§input_address: String
§hash: String
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Stake
impl<'de> Deserialize<'de> for Stake
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 Stake
impl RefUnwindSafe for Stake
impl Send for Stake
impl Sync for Stake
impl Unpin for Stake
impl UnwindSafe for Stake
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