pub struct DecInt { /* private fields */ }Available on crate features
fs or net only.Expand description
Format an integer into a decimal Path component, without constructing a
temporary PathBuf or String.
This is used for opening paths such as /proc/self/fd/<fd> on Linux.
Example
use rustix::path::DecInt;
assert_eq!(
format!("hello {}", DecInt::new(9876).as_ref().display()),
"hello 9876"
);Implementations§
Trait Implementations§
source§impl Arg for DecInt
impl Arg for DecInt
source§fn to_string_lossy(&self) -> Cow<'_, str>
fn to_string_lossy(&self) -> Cow<'_, str>
Returns a potentially-lossy rendering of this string as a
Cow<'_, str>.source§fn as_cow_c_str(&self) -> Result<Cow<'_, CStr>>
fn as_cow_c_str(&self) -> Result<Cow<'_, CStr>>
Returns a view of this string as a maybe-owned
CStr.