pub struct InlineResponseDefault {
pub merkle: Vec<String>,
pub block_height: f32,
pub pos: f32,
}Fields§
§merkle: Vec<String>A list of transaction hashes the current hash is paired with, deepest pairing first.
block_height: f32The height of the block the transaction was confirmed in.
pos: f32The 0-based index of the position of the transaction in the ordered list of transactions in the block.
Implementations§
Trait Implementations§
Source§impl Clone for InlineResponseDefault
impl Clone for InlineResponseDefault
Source§fn clone(&self) -> InlineResponseDefault
fn clone(&self) -> InlineResponseDefault
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 InlineResponseDefault
impl Debug for InlineResponseDefault
Source§impl<'de> Deserialize<'de> for InlineResponseDefault
impl<'de> Deserialize<'de> for InlineResponseDefault
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 InlineResponseDefault
impl PartialEq for InlineResponseDefault
Source§impl Serialize for InlineResponseDefault
impl Serialize for InlineResponseDefault
impl StructuralPartialEq for InlineResponseDefault
Auto Trait Implementations§
impl Freeze for InlineResponseDefault
impl RefUnwindSafe for InlineResponseDefault
impl Send for InlineResponseDefault
impl Sync for InlineResponseDefault
impl Unpin for InlineResponseDefault
impl UnwindSafe for InlineResponseDefault
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