pub struct MemoizedTransactionOutput {
pub is_legacy: bool,
pub address: Address,
pub value: Value,
pub datum: MemoizedDatum,
pub script: Option<MemoizedScript>,
}Fields§
§is_legacy: bool§address: Address§value: Value§datum: MemoizedDatum§script: Option<MemoizedScript>Implementations§
Source§impl MemoizedTransactionOutput
impl MemoizedTransactionOutput
pub fn delegate(&self) -> Option<StakeCredential>
Trait Implementations§
Source§impl Clone for MemoizedTransactionOutput
impl Clone for MemoizedTransactionOutput
Source§fn clone(&self) -> MemoizedTransactionOutput
fn clone(&self) -> MemoizedTransactionOutput
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 MemoizedTransactionOutput
impl Debug for MemoizedTransactionOutput
Source§impl<'b, C> Decode<'b, C> for MemoizedTransactionOutput
impl<'b, C> Decode<'b, C> for MemoizedTransactionOutput
Source§impl<'de> Deserialize<'de> for MemoizedTransactionOutput
impl<'de> Deserialize<'de> for MemoizedTransactionOutput
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<C> Encode<C> for MemoizedTransactionOutput
impl<C> Encode<C> for MemoizedTransactionOutput
impl Eq for MemoizedTransactionOutput
impl StructuralPartialEq for MemoizedTransactionOutput
Auto Trait Implementations§
impl Freeze for MemoizedTransactionOutput
impl RefUnwindSafe for MemoizedTransactionOutput
impl Send for MemoizedTransactionOutput
impl Sync for MemoizedTransactionOutput
impl Unpin for MemoizedTransactionOutput
impl UnsafeUnpin for MemoizedTransactionOutput
impl UnwindSafe for MemoizedTransactionOutput
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more