pub struct TxOutputSuccess {
pub contract: Box<Contract>,
pub payments: Vec<Payment>,
pub state: Box<MarloweState>,
pub warnings: Vec<TransactionWarning>,
}Expand description
TxOutputSuccess : Marlowe transaction output information.
Fields§
§contract: Box<Contract>§payments: Vec<Payment>§state: Box<MarloweState>§warnings: Vec<TransactionWarning>Implementations§
Source§impl TxOutputSuccess
impl TxOutputSuccess
Sourcepub fn new(
contract: Contract,
payments: Vec<Payment>,
state: MarloweState,
warnings: Vec<TransactionWarning>,
) -> TxOutputSuccess
pub fn new( contract: Contract, payments: Vec<Payment>, state: MarloweState, warnings: Vec<TransactionWarning>, ) -> TxOutputSuccess
Marlowe transaction output information.
Trait Implementations§
Source§impl Clone for TxOutputSuccess
impl Clone for TxOutputSuccess
Source§fn clone(&self) -> TxOutputSuccess
fn clone(&self) -> TxOutputSuccess
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 TxOutputSuccess
impl Debug for TxOutputSuccess
Source§impl<'de> Deserialize<'de> for TxOutputSuccess
impl<'de> Deserialize<'de> for TxOutputSuccess
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<TxOutputSuccess, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<TxOutputSuccess, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for TxOutputSuccess
impl PartialEq for TxOutputSuccess
Source§impl Serialize for TxOutputSuccess
impl Serialize for TxOutputSuccess
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for TxOutputSuccess
Auto Trait Implementations§
impl Freeze for TxOutputSuccess
impl RefUnwindSafe for TxOutputSuccess
impl Send for TxOutputSuccess
impl Sync for TxOutputSuccess
impl Unpin for TxOutputSuccess
impl UnwindSafe for TxOutputSuccess
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