pub struct UtxoData {
pub chain_height: u32,
pub chaintip_hash: String,
pub bitmap: String,
pub utxos: Vec<Utxo>,
}Fields§
§chain_height: u32§chaintip_hash: String§bitmap: String§utxos: Vec<Utxo>Trait Implementations§
Source§impl<'de> Deserialize<'de> for UtxoData
impl<'de> Deserialize<'de> for UtxoData
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 UtxoData
impl RefUnwindSafe for UtxoData
impl Send for UtxoData
impl Sync for UtxoData
impl Unpin for UtxoData
impl UnsafeUnpin for UtxoData
impl UnwindSafe for UtxoData
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