specta-util 0.0.12

High-level utilities for working with Specta
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Extended functionality for [Specta](specta).

#![cfg_attr(docsrs, feature(doc_cfg))]
#![doc(
    html_logo_url = "https://github.com/specta-rs/specta/raw/main/.github/logo-128.png",
    html_favicon_url = "https://github.com/specta-rs/specta/raw/main/.github/logo-128.png"
)]

#[cfg(feature = "serde")]
#[cfg_attr(docsrs, doc(cfg(feature = "serde")))]
mod selection;

mod array;
mod remapper;

pub use array::FixedArray;
pub use remapper::Remapper;