Struct hal_elements::tx::OutputInfo
source · [−]pub struct OutputInfo {
pub script_pub_key: Option<OutputScriptInfo>,
pub asset: Option<ConfidentialAssetInfo>,
pub value: Option<ConfidentialValueInfo>,
pub nonce: Option<ConfidentialNonceInfo>,
pub witness: Option<OutputWitnessInfo>,
pub is_fee: Option<bool>,
pub pegout_data: Option<PegoutDataInfo>,
}Fields
script_pub_key: Option<OutputScriptInfo>asset: Option<ConfidentialAssetInfo>value: Option<ConfidentialValueInfo>nonce: Option<ConfidentialNonceInfo>witness: Option<OutputWitnessInfo>is_fee: Option<bool>pegout_data: Option<PegoutDataInfo>Trait Implementations
sourceimpl Clone for OutputInfo
impl Clone for OutputInfo
sourcefn clone(&self) -> OutputInfo
fn clone(&self) -> OutputInfo
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for OutputInfo
impl Debug for OutputInfo
sourceimpl<'de> Deserialize<'de> for OutputInfo
impl<'de> Deserialize<'de> for OutputInfo
sourcefn 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
sourceimpl GetInfo<OutputInfo> for TxOut
impl GetInfo<OutputInfo> for TxOut
sourcefn get_info(&self, network: Network) -> OutputInfo
fn get_info(&self, network: Network) -> OutputInfo
Get a description of this object given the network of interest.
sourceimpl PartialEq<OutputInfo> for OutputInfo
impl PartialEq<OutputInfo> for OutputInfo
sourcefn eq(&self, other: &OutputInfo) -> bool
fn eq(&self, other: &OutputInfo) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &OutputInfo) -> bool
fn ne(&self, other: &OutputInfo) -> bool
This method tests for !=.
sourceimpl Serialize for OutputInfo
impl Serialize for OutputInfo
impl Eq for OutputInfo
impl StructuralEq for OutputInfo
impl StructuralPartialEq for OutputInfo
Auto Trait Implementations
impl RefUnwindSafe for OutputInfo
impl Send for OutputInfo
impl Sync for OutputInfo
impl Unpin for OutputInfo
impl UnwindSafe for OutputInfo
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more