pub struct BlockVout {
pub value: Amount,
pub n: u16,
pub spent: Option<bool>,
pub addresses: Vec<AddressBlockVout>,
pub is_address: bool,
}Expand description
Information about a transaction output.
Fields§
§value: Amount§n: u16§spent: Option<bool>§addresses: Vec<AddressBlockVout>§is_address: boolIndicates the addresses vector to contain the Address AddressBlockVout variant
Trait Implementations§
Source§impl<'de> Deserialize<'de> for BlockVout
impl<'de> Deserialize<'de> for BlockVout
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
impl Eq for BlockVout
impl StructuralPartialEq for BlockVout
Auto Trait Implementations§
impl Freeze for BlockVout
impl RefUnwindSafe for BlockVout
impl Send for BlockVout
impl Sync for BlockVout
impl Unpin for BlockVout
impl UnwindSafe for BlockVout
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.