pub enum GenTransactionOutput<'b, T> {
Legacy(KeepRaw<'b, LegacyTransactionOutput>),
PostAlonzo(KeepRaw<'b, T>),
}Variants§
Legacy(KeepRaw<'b, LegacyTransactionOutput>)
PostAlonzo(KeepRaw<'b, T>)
Trait Implementations§
Source§impl<'b, T: Clone> Clone for GenTransactionOutput<'b, T>
impl<'b, T: Clone> Clone for GenTransactionOutput<'b, T>
Source§fn clone(&self) -> GenTransactionOutput<'b, T>
fn clone(&self) -> GenTransactionOutput<'b, T>
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<'b, T: Debug> Debug for GenTransactionOutput<'b, T>
impl<'b, T: Debug> Debug for GenTransactionOutput<'b, T>
Source§impl<'de, 'b, T> Deserialize<'de> for GenTransactionOutput<'b, T>where
T: Deserialize<'de>,
impl<'de, 'b, T> Deserialize<'de> for GenTransactionOutput<'b, T>where
T: Deserialize<'de>,
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<'b, T: Eq> Eq for GenTransactionOutput<'b, T>
Source§impl<'b, T: PartialEq> PartialEq for GenTransactionOutput<'b, T>
impl<'b, T: PartialEq> PartialEq for GenTransactionOutput<'b, T>
Source§impl<'b, T> Serialize for GenTransactionOutput<'b, T>where
T: Serialize,
impl<'b, T> Serialize for GenTransactionOutput<'b, T>where
T: Serialize,
impl<'b, T: PartialEq> StructuralPartialEq for GenTransactionOutput<'b, T>
Auto Trait Implementations§
impl<'b, T> Freeze for GenTransactionOutput<'b, T>
impl<'b, T> RefUnwindSafe for GenTransactionOutput<'b, T>where
KeepRaw<'b, T>: RefUnwindSafe,
impl<'b, T> Send for GenTransactionOutput<'b, T>
impl<'b, T> Sync for GenTransactionOutput<'b, T>
impl<'b, T> Unpin for GenTransactionOutput<'b, T>
impl<'b, T> UnsafeUnpin for GenTransactionOutput<'b, T>where
KeepRaw<'b, T>: UnsafeUnpin,
impl<'b, T> UnwindSafe for GenTransactionOutput<'b, T>where
KeepRaw<'b, T>: UnwindSafe,
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