stefans-utils 0.13.0

A collection of useful Rust utility functions, types, and traits.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Re-exports of mostly all utils

pub use crate::{
    as_arc::*, as_bool::*, as_clone::*, as_copy::*, as_secret::*, as_str::*, collect_by_key::*,
    comparator::*, dependencies::*, expect_comparison::*, expect_length::*, find_upwards::*,
    from_str::*, literals::*, map::*, map_into::*, path::*, secret::*, try_map_into::*,
    unwrap_into::*, with_len::*,
};

#[allow(unused)]
#[cfg(all(feature = "serde", feature = "schemars"))]
pub use crate::literals::*;
#[cfg(feature = "serde")]
pub use crate::php_safe_hashmap::*;
#[cfg(all(feature = "serde", feature = "indexmap"))]
pub use crate::php_safe_indexmap::*;
#[cfg(feature = "serde")]
pub use crate::single_kv_map::*;