use crate::;
/// The default raw relative pointer.
///
/// This will use an archived [`FixedIsize`](crate::primitive::FixedIsize) to
/// hold the offset.
pub type RawRelPtr = RawRelPtr;
/// The default relative pointer.
///
/// This will use an archived [`FixedIsize`](crate::primitive::FixedIsize) to
/// hold the offset.
pub type RelPtr<T> = RelPtr;
/// Alias for the archived version of some [`Archive`] type.
///
/// This can be useful for reducing the lengths of type definitions.
pub type Archived<T> = Archived;
/// Alias for the resolver for some [`Archive`] type.
///
/// This can be useful for reducing the lengths of type definitions.
pub type Resolver<T> = Resolver;
/// Alias for the archived metadata for some [`ArchiveUnsized`] type.
///
/// This can be useful for reducing the lengths of type definitions.
pub type ArchivedMetadata<T> =
ArchivedMetadata;