stefans-utils 0.12.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
//! Re-exports of mostly all utils

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

#[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::*;