pub struct LoadTxoutSetResponse {
pub base_height: u64,
pub coins_loaded: u64,
pub path: String,
pub tip_hash: String,
}Expand description
Response for the LoadTxOutSet RPC method
Fields§
§base_height: u64the height of the base of the snapshot
coins_loaded: u64the number of coins loaded from the snapshot
path: Stringthe absolute path that the snapshot was loaded from
tip_hash: Stringthe hash of the base of the snapshot
Trait Implementations§
Source§impl Clone for LoadTxoutSetResponse
impl Clone for LoadTxoutSetResponse
Source§fn clone(&self) -> LoadTxoutSetResponse
fn clone(&self) -> LoadTxoutSetResponse
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 LoadTxoutSetResponse
impl Debug for LoadTxoutSetResponse
Source§impl<'de> Deserialize<'de> for LoadTxoutSetResponse
impl<'de> Deserialize<'de> for LoadTxoutSetResponse
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 LoadTxoutSetResponse
impl PartialEq for LoadTxoutSetResponse
Source§impl Serialize for LoadTxoutSetResponse
impl Serialize for LoadTxoutSetResponse
impl StructuralPartialEq for LoadTxoutSetResponse
Auto Trait Implementations§
impl Freeze for LoadTxoutSetResponse
impl RefUnwindSafe for LoadTxoutSetResponse
impl Send for LoadTxoutSetResponse
impl Sync for LoadTxoutSetResponse
impl Unpin for LoadTxoutSetResponse
impl UnwindSafe for LoadTxoutSetResponse
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