pub struct ListPresignedTxEntry {
pub vault_outpoint: OutPoint,
pub unvault: UnvaultTransaction,
pub cancel: [CancelTransaction; 5],
pub emergency: Option<EmergencyTransaction>,
pub unvault_emergency: Option<UnvaultEmergencyTransaction>,
}Expand description
Information about a vault’s presigned transactions.
Fields§
§vault_outpoint: OutPoint§unvault: UnvaultTransaction§cancel: [CancelTransaction; 5]§emergency: Option<EmergencyTransaction>Always None if not stakeholder
unvault_emergency: Option<UnvaultEmergencyTransaction>Always None if not stakeholder
Trait Implementations§
Source§impl Clone for ListPresignedTxEntry
impl Clone for ListPresignedTxEntry
Source§fn clone(&self) -> ListPresignedTxEntry
fn clone(&self) -> ListPresignedTxEntry
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 ListPresignedTxEntry
impl Debug for ListPresignedTxEntry
Source§impl<'de> Deserialize<'de> for ListPresignedTxEntry
impl<'de> Deserialize<'de> for ListPresignedTxEntry
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 ListPresignedTxEntry
impl RefUnwindSafe for ListPresignedTxEntry
impl Send for ListPresignedTxEntry
impl Sync for ListPresignedTxEntry
impl Unpin for ListPresignedTxEntry
impl UnwindSafe for ListPresignedTxEntry
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