wtx 0.43.0

A collection of different transport implementations and related tools focused primarily on web technologies.
Documentation
//! Collection types

#[macro_use]
mod macros;

mod array_string;
mod array_vector;
mod array_wrapper;
mod auto_clear;
mod blocks_deque;
mod clear;
mod deque;
mod expansion_ty;
mod fixed_string;
mod linear_storage;
mod misc;
mod truncate;
mod try_extend;
mod uninit;
mod vector;

pub use array_string::{
  ArrayString, ArrayStringError, ArrayStringU8, ArrayStringU16, ArrayStringU32, ArrayStringUsize,
};
pub use array_vector::{
  ArrayIntoIter, ArrayVector, ArrayVectorError, ArrayVectorU8, ArrayVectorU16, ArrayVectorU32,
  ArrayVectorUsize,
};
pub use array_wrapper::ArrayWrapper;
pub use auto_clear::AutoClear;
pub use blocks_deque::{Block, BlocksDeque, BlocksDequeError};
pub use clear::Clear;
pub use deque::{Deque, DequeueError};
pub use expansion_ty::ExpansionTy;
pub use fixed_string::{FixedString, FixedStringError};
pub use linear_storage::linear_storage_len::LinearStorageLen;
pub use misc::backward_deque_idx;
pub use truncate::Truncate;
pub use try_extend::TryExtend;
pub use uninit::{Uninit, UninitError, UninitU8, UninitU16, UninitU32, UninitUsize};
pub use vector::{Vector, VectorError};