#str #string #slice #owned #macro

str-macro

The str!() macro, similar to vec![] but for strings

6 releases (1 stable)

1.0.0 Feb 13, 2021
0.1.4 Jan 26, 2020
0.1.3 Sep 22, 2019
0.1.2 Apr 21, 2019

#616 in Rust patterns

Download history 4999/week @ 2022-11-28 4347/week @ 2022-12-05 5276/week @ 2022-12-12 6125/week @ 2022-12-19 4845/week @ 2022-12-26 5031/week @ 2023-01-02 6313/week @ 2023-01-09 4474/week @ 2023-01-16 6950/week @ 2023-01-23 8059/week @ 2023-01-30 3701/week @ 2023-02-06 4153/week @ 2023-02-13 4136/week @ 2023-02-20 3570/week @ 2023-02-27 4360/week @ 2023-03-06 5007/week @ 2023-03-13

17,306 downloads per month
Used in fewer than 10 crates

MIT license

6KB

str-macro

Rust CI badge

Rust crate for the str!() macro, which makes the conveniences available from vec![] available for String as well.

Has no dependencies, and should work on any Rust release channel.

  • Create an empty String
// Vec equivalent
let v = vec![];
assert_eq!(v, Vec::new());
assert!(v.is_empty());

// String
let s = str!();
assert_eq!(s, String::new());
assert!(s.is_empty());
  • Create an owned String from a constant str reference.
// Vec equivalent
let v = vec!["alpha", "beta", "gamma"];
assert_eq!(&v, &["alpha", "beta", "gamma"];
assert_eq!(v.len(), 3);

// String
let s = str!("alpha beta gamma");
assert_eq!(&s, "alpha beta gamma");
let _: String = s;
  • Create an owned String from an object which implements ToString.

Note that this is automatically implemented for anything that implements Display.

let s = str!(2194);
assert_eq!(&s, "2194");

let s = str!(Ipv4Addr::new(127, 0, 0, 1));
assert_eq!(&s, "127.0.0.1");

Copyright (C) 2019-2021 Ammon Smith

Available under the MIT License.

No runtime deps