pub struct TestIntentV2 {
pub instructions: InstructionsV2,
pub blobs: BlobsV1,
pub hash: Hash,
pub initial_proofs: BTreeSet<NonFungibleGlobalId>,
pub children_subintent_indices: Vec<SubintentIndex>,
}
Fields§
§instructions: InstructionsV2
§blobs: BlobsV1
§hash: Hash
§initial_proofs: BTreeSet<NonFungibleGlobalId>
§children_subintent_indices: Vec<SubintentIndex>
Trait Implementations§
Source§impl<D: Decoder<ManifestCustomValueKind>> Decode<ManifestCustomValueKind, D> for TestIntentV2
impl<D: Decoder<ManifestCustomValueKind>> Decode<ManifestCustomValueKind, D> for TestIntentV2
Source§fn decode_body_with_value_kind(
decoder: &mut D,
value_kind: ValueKind<ManifestCustomValueKind>,
) -> Result<Self, DecodeError>
fn decode_body_with_value_kind( decoder: &mut D, value_kind: ValueKind<ManifestCustomValueKind>, ) -> Result<Self, DecodeError>
Decodes the type from the decoder, which should match a preloaded value kind. Read more
Source§impl<E: Encoder<ManifestCustomValueKind>> Encode<ManifestCustomValueKind, E> for TestIntentV2
impl<E: Encoder<ManifestCustomValueKind>> Encode<ManifestCustomValueKind, E> for TestIntentV2
Source§fn encode_value_kind(&self, encoder: &mut E) -> Result<(), EncodeError>
fn encode_value_kind(&self, encoder: &mut E) -> Result<(), EncodeError>
Encodes the SBOR value’s kind to the encoder
Source§fn encode_body(&self, encoder: &mut E) -> Result<(), EncodeError>
fn encode_body(&self, encoder: &mut E) -> Result<(), EncodeError>
Encodes the SBOR body of the type to the encoder. Read more
Source§impl SborTuple<ManifestCustomValueKind> for TestIntentV2
impl SborTuple<ManifestCustomValueKind> for TestIntentV2
fn get_length(&self) -> usize
Auto Trait Implementations§
impl Freeze for TestIntentV2
impl RefUnwindSafe for TestIntentV2
impl Send for TestIntentV2
impl Sync for TestIntentV2
impl Unpin for TestIntentV2
impl UnwindSafe for TestIntentV2
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