#string #token #truncated #ellipsis

truncatable

Small crate for truncatable strings

4 releases

0.1.3 May 17, 2021
0.1.2 May 17, 2021
0.1.1 May 17, 2021
0.1.0 May 17, 2021

#262 in #token

42 downloads per month
Used in tvrank-cli

GPL-3.0-only

6KB
98 lines

Truncatable

Truncatable is a small rust crate for Strings that should append a follower when truncated (eg, ellipsis).

Crates.io Build

Usage

use truncatable::Truncatable;
let to_truncate = Truncatable::from("Hello World!").truncator("~~".into());
assert_eq!(to_truncate.truncate(5), String::from("Hello~~"));

lib.rs:

truncatable

Truncatable is a simple crate for Strings that should append a follower when truncated (eg, ellipsis)

use truncatable::Truncatable;
let to_truncate = Truncatable::from("Hello World!").truncator("~~".into());
assert_eq!(to_truncate.truncate(5), String::from("Hello~~"));

No runtime deps