pub struct AddressIndexRecorder {
pub account_index: usize,
pub input: Input,
pub output: OutputResponse,
pub address_index: usize,
pub chain: Chain,
pub internal: bool,
pub bech32_address: String,
}
Expand description
Structure for sorting of UnlockBlocks
Fields§
§account_index: usize
Index of the account
input: Input
The input used
output: OutputResponse
The output information
address_index: usize
index of this address on the seed
chain: Chain
The chain derived from seed
internal: bool
Whether this is an internal address
bech32_address: String
The address
Trait Implementations§
Source§impl Clone for AddressIndexRecorder
impl Clone for AddressIndexRecorder
Source§fn clone(&self) -> AddressIndexRecorder
fn clone(&self) -> AddressIndexRecorder
Returns a copy 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 AddressIndexRecorder
impl Debug for AddressIndexRecorder
Source§impl<'de> Deserialize<'de> for AddressIndexRecorder
impl<'de> Deserialize<'de> for AddressIndexRecorder
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 AddressIndexRecorder
impl RefUnwindSafe for AddressIndexRecorder
impl Send for AddressIndexRecorder
impl Sync for AddressIndexRecorder
impl Unpin for AddressIndexRecorder
impl UnwindSafe for AddressIndexRecorder
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