pub struct GetBlockVerbosityZero(pub String);
Expand description
Result of JSON-RPC method getblock
with verbosity set to 0.
A string that is serialized, hex-encoded data for block ‘hash’.
Method call: getblock "blockhash" ( verbosity )
Tuple Fields§
§0: String
Implementations§
Trait Implementations§
Source§impl Clone for GetBlockVerbosityZero
impl Clone for GetBlockVerbosityZero
Source§fn clone(&self) -> GetBlockVerbosityZero
fn clone(&self) -> GetBlockVerbosityZero
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 GetBlockVerbosityZero
impl Debug for GetBlockVerbosityZero
Source§impl<'de> Deserialize<'de> for GetBlockVerbosityZero
impl<'de> Deserialize<'de> for GetBlockVerbosityZero
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
Source§impl PartialEq for GetBlockVerbosityZero
impl PartialEq for GetBlockVerbosityZero
Source§impl Serialize for GetBlockVerbosityZero
impl Serialize for GetBlockVerbosityZero
impl StructuralPartialEq for GetBlockVerbosityZero
Auto Trait Implementations§
impl Freeze for GetBlockVerbosityZero
impl RefUnwindSafe for GetBlockVerbosityZero
impl Send for GetBlockVerbosityZero
impl Sync for GetBlockVerbosityZero
impl Unpin for GetBlockVerbosityZero
impl UnwindSafe for GetBlockVerbosityZero
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