6 releases (stable)
2.2.0 | May 21, 2024 |
---|---|
2.1.0 | May 15, 2024 |
1.0.1 | May 15, 2024 |
0.1.0 |
|
0.0.1 | Jan 10, 2023 |
#72 in Value formatting
223 downloads per month
Used in 2 crates
(via gset)
24KB
691 lines
printable
Provides std::fmt::Display
wrapper for iterators and tuples.
Usage
Displaying iterators.
use printable::prelude::PrintableIter;
let v = vec![1, 2, 3];
assert_eq!(format!("{}", v.iter().printable()), "[1, 2, 3]");
Displaying tuples.
use printable::prelude::PrintableTuple;
let v = (1, "2", 3.0);
assert_eq!(format!("{}", v.printable()), "[1, 2, 3]");
Features
-
unstable-assert-no-drop
Enables compile-time assertions that the iterators used don't own any resource.
Warning
May violate backward compatibility and lead to compilation failure even if the major semver versions of the underlying crates aren't updated.
This may happen due to the following factors:
- The
std::mem::needs_drop
documentation does not guarantee its stability. - The fact that the iterator type, which can be declared in a third-party crate, started owning a resource doesn't require increasing the major version of this crate.
- The