#string #unix #str #string-conversion

no-std unix_str

Unix-compatible strings regardless of platform

1 stable release

1.0.0 Aug 3, 2020

#273 in No standard library

Download history 663/week @ 2023-12-13 469/week @ 2023-12-20 421/week @ 2023-12-27 1132/week @ 2024-01-03 803/week @ 2024-01-10 999/week @ 2024-01-17 1086/week @ 2024-01-24 901/week @ 2024-01-31 594/week @ 2024-02-07 582/week @ 2024-02-14 691/week @ 2024-02-21 572/week @ 2024-02-28 646/week @ 2024-03-06 497/week @ 2024-03-13 600/week @ 2024-03-20 621/week @ 2024-03-27

2,445 downloads per month
Used in 10 crates (via unix_path)

MIT/Apache

58KB
1K SLoC

unix_str

Unix-compatible strings regardless of platform, including #![no_std] environents. This crate is extracted from std.

Features

  • shrink_to: implements the unstable shrink_to method;
  • unixstring_ascii: ASCII transformations, std's unstable feature;
  • toowned_clone_into: implements ToOwned::clone_into, an unstable method;
  • alloc: implements UnixString and transformations with Box, Rc and Arc;
  • std: an alias for alloc.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.


lib.rs:

Strings that are compatible wuth Unix-like operating systems.

  • UnixString and UnixStr are useful when you need to with Unix strings. Conversions between UnixString, UnixStr and Rust strings work similarly to those for CString and CStr.

  • UnixString represents an owned string in Unix's preferred representation.

  • UnixStr represents a borrowed reference to a string in a format that can be passed to a Unix-lie operating system. It can be converted into a UTF-8 Rust string slice in a similar way to UnixString.

Conversions

UnixStr implements two methods, from_bytes and as_bytes. These do inexpensive conversions from and to UTF-8 byte slices.

Additionally, UnixString provides from_vec and into_vec methods that consume their arguments, and take or produce vectors of [u8].

No runtime deps

Features