pub struct TransactionTree {
pub value: Box<JsTransactionTree>,
}
Expand description
TransactionTree : Provided for backwards compatibility, it will be removed in the Canton version 3.4.0. Complete view of an on-ledger transaction.
Fields§
§value: Box<JsTransactionTree>
Implementations§
Source§impl TransactionTree
impl TransactionTree
Sourcepub fn new(value: JsTransactionTree) -> TransactionTree
pub fn new(value: JsTransactionTree) -> TransactionTree
Provided for backwards compatibility, it will be removed in the Canton version 3.4.0. Complete view of an on-ledger transaction.
Trait Implementations§
Source§impl Clone for TransactionTree
impl Clone for TransactionTree
Source§fn clone(&self) -> TransactionTree
fn clone(&self) -> TransactionTree
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 TransactionTree
impl Debug for TransactionTree
Source§impl Default for TransactionTree
impl Default for TransactionTree
Source§fn default() -> TransactionTree
fn default() -> TransactionTree
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TransactionTree
impl<'de> Deserialize<'de> for TransactionTree
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
Source§impl PartialEq for TransactionTree
impl PartialEq for TransactionTree
Source§impl Serialize for TransactionTree
impl Serialize for TransactionTree
impl StructuralPartialEq for TransactionTree
Auto Trait Implementations§
impl Freeze for TransactionTree
impl RefUnwindSafe for TransactionTree
impl Send for TransactionTree
impl Sync for TransactionTree
impl Unpin for TransactionTree
impl UnwindSafe for TransactionTree
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