5 个版本

0.2.1 2024年5月24日
0.2.0 2022年11月22日
0.1.2 2022年11月18日
0.1.1 2021年10月3日
0.1.0 2021年10月3日

#19 in #util

44 每月下载次数
用于 2 crates

GPL-3.0 许可证

14KB

vec-string

一个非常短的 crate,用于显示类型为 Vec 的向量,其中 T: Display。通常,当元素实现了 Debug 时,可以使用 format!("{:?}", vec);。这个 crate 的目的是做同样的事情,但针对实现了 Display 的元素。

assert_eq!("[1, 2, 3]", vec![1, 2, 3].vec_string());

许可证

Copyright (C) 2024 Cody Bloemhard

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program.  If not, see <https://www.gnu.org/licenses/>.

无运行时依赖