osom_lib_strings 0.1.30

ABI-stable string types and helpers for osom_lib.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Holds aliases usable with std feature.
use osom_lib_alloc::std_allocator::StdAllocator;

use super::{SharedString, SharedStringBuilder};

/// The alias for [`StdSharedString`] with [`StdAllocator`].
pub type StdSharedString = SharedString<StdAllocator>;

/// The alias for [`StdSharedStringBuilder`] with [`StdAllocator`].
pub type StdSharedStringBuilder = SharedStringBuilder<StdAllocator>;