pub struct TransactionPackage {
pub transaction: Vec<u8>,
pub objects: Vec<ObjectPayload>,
}Fields§
§transaction: Vec<u8>§objects: Vec<ObjectPayload>Trait Implementations§
Source§impl Clone for TransactionPackage
impl Clone for TransactionPackage
Source§fn clone(&self) -> TransactionPackage
fn clone(&self) -> TransactionPackage
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TransactionPackage
impl Debug for TransactionPackage
Source§impl<'de> Deserialize<'de> for TransactionPackage
impl<'de> Deserialize<'de> for TransactionPackage
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
impl Eq for TransactionPackage
Source§impl PartialEq for TransactionPackage
impl PartialEq for TransactionPackage
Source§impl Serialize for TransactionPackage
impl Serialize for TransactionPackage
impl StructuralPartialEq for TransactionPackage
Auto Trait Implementations§
impl Freeze for TransactionPackage
impl RefUnwindSafe for TransactionPackage
impl Send for TransactionPackage
impl Sync for TransactionPackage
impl Unpin for TransactionPackage
impl UnsafeUnpin for TransactionPackage
impl UnwindSafe for TransactionPackage
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