pub struct MintedWitnessSet<'b> {
pub vkeywitness: Option<NonEmptySet<VKeyWitness>>,
pub native_script: Option<NonEmptySet<KeepRaw<'b, NativeScript>>>,
pub bootstrap_witness: Option<NonEmptySet<BootstrapWitness>>,
pub plutus_v1_script: Option<NonEmptySet<PlutusScript<1>>>,
pub plutus_data: Option<NonEmptySet<KeepRaw<'b, PlutusData>>>,
pub redeemer: Option<KeepRaw<'b, Redeemers>>,
pub plutus_v2_script: Option<NonEmptySet<PlutusScript<2>>>,
pub plutus_v3_script: Option<NonEmptySet<PlutusScript<3>>>,
}Fields§
§vkeywitness: Option<NonEmptySet<VKeyWitness>>§native_script: Option<NonEmptySet<KeepRaw<'b, NativeScript>>>§bootstrap_witness: Option<NonEmptySet<BootstrapWitness>>§plutus_v1_script: Option<NonEmptySet<PlutusScript<1>>>§plutus_data: Option<NonEmptySet<KeepRaw<'b, PlutusData>>>§redeemer: Option<KeepRaw<'b, Redeemers>>§plutus_v2_script: Option<NonEmptySet<PlutusScript<2>>>§plutus_v3_script: Option<NonEmptySet<PlutusScript<3>>>Trait Implementations§
Source§impl<'b> Clone for MintedWitnessSet<'b>
impl<'b> Clone for MintedWitnessSet<'b>
Source§fn clone(&self) -> MintedWitnessSet<'b>
fn clone(&self) -> MintedWitnessSet<'b>
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> Debug for MintedWitnessSet<'b>
impl<'b> Debug for MintedWitnessSet<'b>
Source§impl<'bytes, 'b, Ctx> Decode<'bytes, Ctx> for MintedWitnessSet<'b>where
'bytes: 'b,
impl<'bytes, 'b, Ctx> Decode<'bytes, Ctx> for MintedWitnessSet<'b>where
'bytes: 'b,
Source§impl<'b, Ctx> Encode<Ctx> for MintedWitnessSet<'b>
impl<'b, Ctx> Encode<Ctx> for MintedWitnessSet<'b>
Source§impl<'b> From<MintedWitnessSet<'b>> for WitnessSet
impl<'b> From<MintedWitnessSet<'b>> for WitnessSet
Source§fn from(x: MintedWitnessSet<'b>) -> WitnessSet
fn from(x: MintedWitnessSet<'b>) -> WitnessSet
Converts to this type from the input type.
Source§impl<'b> PartialEq for MintedWitnessSet<'b>
impl<'b> PartialEq for MintedWitnessSet<'b>
Source§fn eq(&self, other: &MintedWitnessSet<'b>) -> bool
fn eq(&self, other: &MintedWitnessSet<'b>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<'b> StructuralPartialEq for MintedWitnessSet<'b>
Auto Trait Implementations§
impl<'b> Freeze for MintedWitnessSet<'b>
impl<'b> RefUnwindSafe for MintedWitnessSet<'b>
impl<'b> Send for MintedWitnessSet<'b>
impl<'b> Sync for MintedWitnessSet<'b>
impl<'b> Unpin for MintedWitnessSet<'b>
impl<'b> UnsafeUnpin for MintedWitnessSet<'b>
impl<'b> UnwindSafe for MintedWitnessSet<'b>
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,
impl<T> ErasedDestructor for Twhere
T: 'static,
impl<T> Fragment for T
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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