radix-common 1.3.1

A library of common types and functions shared by all layers of the Radix stack, from the Radix DLT project.
Documentation
1
2
3
4
5
6
use crate::internal_prelude::*;

pub type ManifestRawPayload<'a> = RawPayload<'a, ManifestCustomExtension>;
pub type ManifestOwnedRawPayload = RawPayload<'static, ManifestCustomExtension>;
pub type ManifestRawValue<'a> = RawValue<'a, ManifestCustomExtension>;
pub type ManifestOwnedRawValue = RawValue<'static, ManifestCustomExtension>;