pub struct WaitForBlockHeightResponse {
pub hash: String,
pub height: u64,
}Expand description
Response for the WaitForBlockHeight RPC method
Fields§
§hash: StringThe blockhash
height: u64Block height
Trait Implementations§
Source§impl Clone for WaitForBlockHeightResponse
impl Clone for WaitForBlockHeightResponse
Source§fn clone(&self) -> WaitForBlockHeightResponse
fn clone(&self) -> WaitForBlockHeightResponse
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 WaitForBlockHeightResponse
impl Debug for WaitForBlockHeightResponse
Source§impl<'de> Deserialize<'de> for WaitForBlockHeightResponse
impl<'de> Deserialize<'de> for WaitForBlockHeightResponse
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 StructuralPartialEq for WaitForBlockHeightResponse
Auto Trait Implementations§
impl Freeze for WaitForBlockHeightResponse
impl RefUnwindSafe for WaitForBlockHeightResponse
impl Send for WaitForBlockHeightResponse
impl Sync for WaitForBlockHeightResponse
impl Unpin for WaitForBlockHeightResponse
impl UnwindSafe for WaitForBlockHeightResponse
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