Struct dlc_manager::contract::FundingInputInfo
source · pub struct FundingInputInfo {
pub funding_input: FundingInput,
pub address: Option<Address>,
}Expand description
Information about a funding input.
Fields§
§funding_input: FundingInputThe funding input as used in messages.
address: Option<Address>The address corresponding to the input if it belongs to us.
Trait Implementations§
source§impl Clone for FundingInputInfo
impl Clone for FundingInputInfo
source§fn clone(&self) -> FundingInputInfo
fn clone(&self) -> FundingInputInfo
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 FundingInputInfo
impl Debug for FundingInputInfo
source§impl From<&FundingInput> for FundingInputInfo
impl From<&FundingInput> for FundingInputInfo
source§fn from(input: &FundingInput) -> FundingInputInfo
fn from(input: &FundingInput) -> FundingInputInfo
Converts to this type from the input type.
source§impl From<&FundingInputInfo> for FundingInput
impl From<&FundingInputInfo> for FundingInput
source§fn from(info: &FundingInputInfo) -> FundingInput
fn from(info: &FundingInputInfo) -> FundingInput
Converts to this type from the input type.