mirror of
https://github.com/NotAShelf/mpvrc.git
synced 2026-04-16 16:03:48 +00:00
433 lines
No EOL
129 KiB
HTML
433 lines
No EOL
129 KiB
HTML
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta name="generator" content="rustdoc"><meta name="description" content="A type representing an owned, C-compatible, nul-terminated string with no nul bytes in the middle."><title>CString in rustix::ffi - Rust</title><script>if(window.location.protocol!=="file:")document.head.insertAdjacentHTML("beforeend","SourceSerif4-Regular-6b053e98.ttf.woff2,FiraSans-Regular-0fe48ade.woff2,FiraSans-Medium-e1aa3f0a.woff2,SourceCodePro-Regular-8badfe75.ttf.woff2,SourceCodePro-Semibold-aa29a496.ttf.woff2".split(",").map(f=>`<link rel="preload" as="font" type="font/woff2" crossorigin href="../../static.files/${f}">`).join(""))</script><link rel="stylesheet" href="../../static.files/normalize-9960930a.css"><link rel="stylesheet" href="../../static.files/rustdoc-42caa33d.css"><meta name="rustdoc-vars" data-root-path="../../" data-static-root-path="../../static.files/" data-current-crate="rustix" data-themes="" data-resource-suffix="" data-rustdoc-version="1.84.1 (e71f9a9a9 2025-01-27)" data-channel="1.84.1" data-search-js="search-92e6798f.js" data-settings-js="settings-0f613d39.js" ><script src="../../static.files/storage-59e33391.js"></script><script defer src="sidebar-items.js"></script><script defer src="../../static.files/main-5f194d8c.js"></script><noscript><link rel="stylesheet" href="../../static.files/noscript-893ab5e7.css"></noscript><link rel="alternate icon" type="image/png" href="../../static.files/favicon-32x32-6580c154.png"><link rel="icon" type="image/svg+xml" href="../../static.files/favicon-044be391.svg"></head><body class="rustdoc struct"><!--[if lte IE 11]><div class="warning">This old browser is unsupported and will most likely display funky things.</div><![endif]--><nav class="mobile-topbar"><button class="sidebar-menu-toggle" title="show sidebar"></button></nav><nav class="sidebar"><div class="sidebar-crate"><h2><a href="../../rustix/index.html">rustix</a><span class="version">0.38.42</span></h2></div><div class="sidebar-elems"><section id="rustdoc-toc"><h2 class="location"><a href="#">CString</a></h2><h3><a href="#">Sections</a></h3><ul class="block top-toc"><li><a href="#creating-a-cstring" title="Creating a `CString`">Creating a <code>CString</code></a></li><li><a href="#extracting-a-raw-pointer-to-the-whole-c-string" title="Extracting a raw pointer to the whole C string">Extracting a raw pointer to the whole C string</a></li><li><a href="#extracting-a-slice-of-the-whole-c-string" title="Extracting a slice of the whole C string">Extracting a slice of the whole C string</a></li><li><a href="#examples" title="Examples">Examples</a></li><li><a href="#safety" title="Safety">Safety</a></li></ul><h3><a href="#implementations">Methods</a></h3><ul class="block method"><li><a href="#method.as_bytes" title="as_bytes">as_bytes</a></li><li><a href="#method.as_bytes_with_nul" title="as_bytes_with_nul">as_bytes_with_nul</a></li><li><a href="#method.as_c_str" title="as_c_str">as_c_str</a></li><li><a href="#method.from_raw" title="from_raw">from_raw</a></li><li><a href="#method.from_vec_unchecked" title="from_vec_unchecked">from_vec_unchecked</a></li><li><a href="#method.from_vec_with_nul" title="from_vec_with_nul">from_vec_with_nul</a></li><li><a href="#method.from_vec_with_nul_unchecked" title="from_vec_with_nul_unchecked">from_vec_with_nul_unchecked</a></li><li><a href="#method.into_boxed_c_str" title="into_boxed_c_str">into_boxed_c_str</a></li><li><a href="#method.into_bytes" title="into_bytes">into_bytes</a></li><li><a href="#method.into_bytes_with_nul" title="into_bytes_with_nul">into_bytes_with_nul</a></li><li><a href="#method.into_raw" title="into_raw">into_raw</a></li><li><a href="#method.into_string" title="into_string">into_string</a></li><li><a href="#method.new" title="new">new</a></li></ul><h3><a href="#deref-methods-CStr">Methods from Deref<<wbr>Target=C<wbr>Str></a></h3><ul class="block deref-methods"><li><a href="#method.as_ptr" title="as_ptr">as_ptr</a></li><li><a href="#method.bytes" title="bytes">bytes</a></li><li><a href="#method.count_bytes" title="count_bytes">count_bytes</a></li><li><a href="#method.is_empty" title="is_empty">is_empty</a></li><li><a href="#method.to_bytes" title="to_bytes">to_bytes</a></li><li><a href="#method.to_bytes_with_nul" title="to_bytes_with_nul">to_bytes_with_nul</a></li><li><a href="#method.to_str" title="to_str">to_str</a></li><li><a href="#method.to_string_lossy" title="to_string_lossy">to_string_lossy</a></li></ul><h3><a href="#trait-implementations">Trait Implementations</a></h3><ul class="block trait-implementation"><li><a href="#impl-Arg-for-%26CString" title="Arg">Arg</a></li><li><a href="#impl-Arg-for-CString" title="Arg">Arg</a></li><li><a href="#impl-AsRef%3CCStr%3E-for-CString" title="AsRef<CStr>">AsRef<CStr></a></li><li><a href="#impl-Borrow%3CCStr%3E-for-CString" title="Borrow<CStr>">Borrow<CStr></a></li><li><a href="#impl-Clone-for-CString" title="Clone">Clone</a></li><li><a href="#impl-Debug-for-CString" title="Debug">Debug</a></li><li><a href="#impl-Default-for-CString" title="Default">Default</a></li><li><a href="#impl-Deref-for-CString" title="Deref">Deref</a></li><li><a href="#impl-Drop-for-CString" title="Drop">Drop</a></li><li><a href="#impl-Eq-for-CString" title="Eq">Eq</a></li><li><a href="#impl-From%3C%26CStr%3E-for-CString" title="From<&CStr>">From<&CStr></a></li><li><a href="#impl-From%3CBox%3CCStr%3E%3E-for-CString" title="From<Box<CStr>>">From<Box<CStr>></a></li><li><a href="#impl-From%3CCow%3C'a,+CStr%3E%3E-for-CString" title="From<Cow<'a, CStr>>">From<Cow<'a, CStr>></a></li><li><a href="#impl-From%3CVec%3CNonZero%3Cu8%3E%3E%3E-for-CString" title="From<Vec<NonZero<u8>>>">From<Vec<NonZero<u8>>></a></li><li><a href="#impl-FromStr-for-CString" title="FromStr">FromStr</a></li><li><a href="#impl-Hash-for-CString" title="Hash">Hash</a></li><li><a href="#impl-Index%3CRangeFull%3E-for-CString" title="Index<RangeFull>">Index<RangeFull></a></li><li><a href="#impl-Ord-for-CString" title="Ord">Ord</a></li><li><a href="#impl-PartialEq-for-CString" title="PartialEq">PartialEq</a></li><li><a href="#impl-PartialOrd-for-CString" title="PartialOrd">PartialOrd</a></li><li><a href="#impl-StructuralPartialEq-for-CString" title="StructuralPartialEq">StructuralPartialEq</a></li></ul><h3><a href="#synthetic-implementations">Auto Trait Implementations</a></h3><ul class="block synthetic-implementation"><li><a href="#impl-Freeze-for-CString" title="Freeze">Freeze</a></li><li><a href="#impl-RefUnwindSafe-for-CString" title="RefUnwindSafe">RefUnwindSafe</a></li><li><a href="#impl-Send-for-CString" title="Send">Send</a></li><li><a href="#impl-Sync-for-CString" title="Sync">Sync</a></li><li><a href="#impl-Unpin-for-CString" title="Unpin">Unpin</a></li><li><a href="#impl-UnwindSafe-for-CString" title="UnwindSafe">UnwindSafe</a></li></ul><h3><a href="#blanket-implementations">Blanket Implementations</a></h3><ul class="block blanket-implementation"><li><a href="#impl-Any-for-T" title="Any">Any</a></li><li><a href="#impl-Borrow%3CT%3E-for-T" title="Borrow<T>">Borrow<T></a></li><li><a href="#impl-BorrowMut%3CT%3E-for-T" title="BorrowMut<T>">BorrowMut<T></a></li><li><a href="#impl-CloneToUninit-for-T" title="CloneToUninit">CloneToUninit</a></li><li><a href="#impl-From%3CT%3E-for-T" title="From<T>">From<T></a></li><li><a href="#impl-Into%3CU%3E-for-T" title="Into<U>">Into<U></a></li><li><a href="#impl-Receiver-for-P" title="Receiver">Receiver</a></li><li><a href="#impl-ToOwned-for-T" title="ToOwned">ToOwned</a></li><li><a href="#impl-TryFrom%3CU%3E-for-T" title="TryFrom<U>">TryFrom<U></a></li><li><a href="#impl-TryInto%3CU%3E-for-T" title="TryInto<U>">TryInto<U></a></li></ul></section><div id="rustdoc-modnav"><h2><a href="index.html">In rustix::<wbr>ffi</a></h2></div></div></nav><div class="sidebar-resizer"></div><main><div class="width-limiter"><rustdoc-search></rustdoc-search><section id="main-content" class="content"><div class="main-heading"><span class="rustdoc-breadcrumbs"><a href="../index.html">rustix</a>::<wbr><a href="index.html">ffi</a></span><h1>Struct <span class="struct">CString</span><button id="copy-path" title="Copy item path to clipboard">Copy item path</button></h1><rustdoc-toolbar></rustdoc-toolbar><span class="sub-heading"><span class="since" title="Stable since Rust version 1.64.0">1.64.0</span> · <a class="src" href="https://doc.rust-lang.org/1.84.1/src/alloc/ffi/c_str.rs.html#111">Source</a> </span></div><pre class="rust item-decl"><code>pub struct CString { <span class="comment">/* private fields */</span> }</code></pre><details class="toggle top-doc" open><summary class="hideme"><span>Expand description</span></summary><div class="docblock"><p>A type representing an owned, C-compatible, nul-terminated string with no nul bytes in the
|
||
middle.</p>
|
||
<p>This type serves the purpose of being able to safely generate a
|
||
C-compatible string from a Rust byte slice or vector. An instance of this
|
||
type is a static guarantee that the underlying bytes contain no interior 0
|
||
bytes (“nul characters”) and that the final byte is 0 (“nul terminator”).</p>
|
||
<p><code>CString</code> is to <code>&<a href="struct.CStr.html" title="struct rustix::ffi::CStr">CStr</a></code> as <a href="https://doc.rust-lang.org/1.84.1/alloc/string/struct.String.html" title="struct alloc::string::String"><code>String</code></a> is to <code>&<a href="https://doc.rust-lang.org/1.84.1/std/primitive.str.html" title="str">str</a></code>: the former
|
||
in each pair are owned strings; the latter are borrowed
|
||
references.</p>
|
||
<h2 id="creating-a-cstring"><a class="doc-anchor" href="#creating-a-cstring">§</a>Creating a <code>CString</code></h2>
|
||
<p>A <code>CString</code> is created from either a byte slice or a byte vector,
|
||
or anything that implements <code><a href="https://doc.rust-lang.org/1.84.1/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a><<a href="https://doc.rust-lang.org/1.84.1/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a><<a href="https://doc.rust-lang.org/1.84.1/std/primitive.u8.html" title="primitive u8">u8</a>>></code> (for
|
||
example, you can build a <code>CString</code> straight out of a <a href="https://doc.rust-lang.org/1.84.1/alloc/string/struct.String.html" title="struct alloc::string::String"><code>String</code></a> or
|
||
a <code>&<a href="https://doc.rust-lang.org/1.84.1/std/primitive.str.html" title="str">str</a></code>, since both implement that trait).
|
||
You can create a <code>CString</code> from a literal with <code>CString::from(c"Text")</code>.</p>
|
||
<p>The <a href="struct.CString.html#method.new" title="associated function rustix::ffi::CString::new"><code>CString::new</code></a> method will actually check that the provided <code>&[<a href="https://doc.rust-lang.org/1.84.1/std/primitive.u8.html" title="primitive u8">u8</a>]</code>
|
||
does not have 0 bytes in the middle, and return an error if it
|
||
finds one.</p>
|
||
<h2 id="extracting-a-raw-pointer-to-the-whole-c-string"><a class="doc-anchor" href="#extracting-a-raw-pointer-to-the-whole-c-string">§</a>Extracting a raw pointer to the whole C string</h2>
|
||
<p><code>CString</code> implements an <a href="struct.CStr.html#method.as_ptr" title="method rustix::ffi::CStr::as_ptr"><code>as_ptr</code></a> method through the <a href="https://doc.rust-lang.org/1.84.1/core/ops/deref/trait.Deref.html" title="trait core::ops::deref::Deref"><code>Deref</code></a>
|
||
trait. This method will give you a <code>*const c_char</code> which you can
|
||
feed directly to extern functions that expect a nul-terminated
|
||
string, like C’s <code>strdup()</code>. Notice that <a href="struct.CStr.html#method.as_ptr" title="method rustix::ffi::CStr::as_ptr"><code>as_ptr</code></a> returns a
|
||
read-only pointer; if the C code writes to it, that causes
|
||
undefined behavior.</p>
|
||
<h2 id="extracting-a-slice-of-the-whole-c-string"><a class="doc-anchor" href="#extracting-a-slice-of-the-whole-c-string">§</a>Extracting a slice of the whole C string</h2>
|
||
<p>Alternatively, you can obtain a <code>&[<a href="https://doc.rust-lang.org/1.84.1/std/primitive.u8.html" title="primitive u8">u8</a>]</code> slice from a
|
||
<code>CString</code> with the <a href="struct.CString.html#method.as_bytes" title="method rustix::ffi::CString::as_bytes"><code>CString::as_bytes</code></a> method. Slices produced in this
|
||
way do <em>not</em> contain the trailing nul terminator. This is useful
|
||
when you will be calling an extern function that takes a <code>*const u8</code> argument which is not necessarily nul-terminated, plus another
|
||
argument with the length of the string — like C’s <code>strndup()</code>.
|
||
You can of course get the slice’s length with its
|
||
<a href="https://doc.rust-lang.org/1.84.1/std/primitive.slice.html#method.len" title="method slice::len"><code>len</code></a> method.</p>
|
||
<p>If you need a <code>&[<a href="https://doc.rust-lang.org/1.84.1/std/primitive.u8.html" title="primitive u8">u8</a>]</code> slice <em>with</em> the nul terminator, you
|
||
can use <a href="struct.CString.html#method.as_bytes_with_nul" title="method rustix::ffi::CString::as_bytes_with_nul"><code>CString::as_bytes_with_nul</code></a> instead.</p>
|
||
<p>Once you have the kind of slice you need (with or without a nul
|
||
terminator), you can call the slice’s own
|
||
<a href="https://doc.rust-lang.org/1.84.1/std/primitive.slice.html#method.as_ptr" title="method slice::as_ptr"><code>as_ptr</code></a> method to get a read-only raw pointer to pass to
|
||
extern functions. See the documentation for that function for a
|
||
discussion on ensuring the lifetime of the raw pointer.</p>
|
||
<h2 id="examples"><a class="doc-anchor" href="#examples">§</a>Examples</h2>
|
||
<div class="example-wrap ignore"><a href="#" class="tooltip" title="This example is not tested">ⓘ</a><pre class="rust rust-example-rendered"><code><span class="kw">use </span>std::ffi::CString;
|
||
<span class="kw">use </span>std::os::raw::c_char;
|
||
|
||
<span class="kw">extern </span><span class="string">"C" </span>{
|
||
<span class="kw">fn </span>my_printer(s: <span class="kw-2">*const </span>c_char);
|
||
}
|
||
|
||
<span class="comment">// We are certain that our string doesn't have 0 bytes in the middle,
|
||
// so we can .expect()
|
||
</span><span class="kw">let </span>c_to_print = CString::new(<span class="string">"Hello, world!"</span>).expect(<span class="string">"CString::new failed"</span>);
|
||
<span class="kw">unsafe </span>{
|
||
my_printer(c_to_print.as_ptr());
|
||
}</code></pre></div>
|
||
<h2 id="safety"><a class="doc-anchor" href="#safety">§</a>Safety</h2>
|
||
<p><code>CString</code> is intended for working with traditional C-style strings
|
||
(a sequence of non-nul bytes terminated by a single nul byte); the
|
||
primary use case for these kinds of strings is interoperating with C-like
|
||
code. Often you will need to transfer ownership to/from that external
|
||
code. It is strongly recommended that you thoroughly read through the
|
||
documentation of <code>CString</code> before use, as improper ownership management
|
||
of <code>CString</code> instances can lead to invalid memory accesses, memory leaks,
|
||
and other memory errors.</p>
|
||
</div></details><h2 id="implementations" class="section-header">Implementations<a href="#implementations" class="anchor">§</a></h2><div id="implementations-list"><details class="toggle implementors-toggle" open><summary><section id="impl-CString" class="impl"><a class="src rightside" href="https://doc.rust-lang.org/1.84.1/src/alloc/ffi/c_str.rs.html#231">Source</a><a href="#impl-CString" class="anchor">§</a><h3 class="code-header">impl <a class="struct" href="struct.CString.html" title="struct rustix::ffi::CString">CString</a></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.new" class="method"><span class="rightside"><span class="since" title="Stable since Rust version 1.0.0">1.0.0</span> · <a class="src" href="https://doc.rust-lang.org/1.84.1/src/alloc/ffi/c_str.rs.html#260">Source</a></span><h4 class="code-header">pub fn <a href="#method.new" class="fn">new</a><T>(t: T) -> <a class="enum" href="https://doc.rust-lang.org/1.84.1/core/result/enum.Result.html" title="enum core::result::Result">Result</a><<a class="struct" href="struct.CString.html" title="struct rustix::ffi::CString">CString</a>, <a class="struct" href="struct.NulError.html" title="struct rustix::ffi::NulError">NulError</a>><div class="where">where
|
||
T: <a class="trait" href="https://doc.rust-lang.org/1.84.1/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a><<a class="struct" href="https://doc.rust-lang.org/1.84.1/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a><<a class="primitive" href="https://doc.rust-lang.org/1.84.1/std/primitive.u8.html">u8</a>>>,</div></h4></section></summary><div class="docblock"><p>Creates a new C-compatible string from a container of bytes.</p>
|
||
<p>This function will consume the provided data and use the
|
||
underlying bytes to construct a new string, ensuring that
|
||
there is a trailing 0 byte. This trailing 0 byte will be
|
||
appended by this function; the provided data should <em>not</em>
|
||
contain any 0 bytes in it.</p>
|
||
<h5 id="examples-1"><a class="doc-anchor" href="#examples-1">§</a>Examples</h5>
|
||
<div class="example-wrap ignore"><a href="#" class="tooltip" title="This example is not tested">ⓘ</a><pre class="rust rust-example-rendered"><code><span class="kw">use </span>std::ffi::CString;
|
||
<span class="kw">use </span>std::os::raw::c_char;
|
||
|
||
<span class="kw">extern </span><span class="string">"C" </span>{ <span class="kw">fn </span>puts(s: <span class="kw-2">*const </span>c_char); }
|
||
|
||
<span class="kw">let </span>to_print = CString::new(<span class="string">"Hello!"</span>).expect(<span class="string">"CString::new failed"</span>);
|
||
<span class="kw">unsafe </span>{
|
||
puts(to_print.as_ptr());
|
||
}</code></pre></div>
|
||
<h5 id="errors"><a class="doc-anchor" href="#errors">§</a>Errors</h5>
|
||
<p>This function will return an error if the supplied bytes contain an
|
||
internal 0 byte. The <a href="struct.NulError.html" title="struct rustix::ffi::NulError"><code>NulError</code></a> returned will contain the bytes as well as
|
||
the position of the nul byte.</p>
|
||
</div></details><details class="toggle method-toggle" open><summary><section id="method.from_vec_unchecked" class="method"><span class="rightside"><span class="since" title="Stable since Rust version 1.0.0">1.0.0</span> · <a class="src" href="https://doc.rust-lang.org/1.84.1/src/alloc/ffi/c_str.rs.html#339">Source</a></span><h4 class="code-header">pub unsafe fn <a href="#method.from_vec_unchecked" class="fn">from_vec_unchecked</a>(v: <a class="struct" href="https://doc.rust-lang.org/1.84.1/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a><<a class="primitive" href="https://doc.rust-lang.org/1.84.1/std/primitive.u8.html">u8</a>>) -> <a class="struct" href="struct.CString.html" title="struct rustix::ffi::CString">CString</a></h4></section></summary><div class="docblock"><p>Creates a C-compatible string by consuming a byte vector,
|
||
without checking for interior 0 bytes.</p>
|
||
<p>Trailing 0 byte will be appended by this function.</p>
|
||
<p>This method is equivalent to <a href="struct.CString.html#method.new" title="associated function rustix::ffi::CString::new"><code>CString::new</code></a> except that no runtime
|
||
assertion is made that <code>v</code> contains no 0 bytes, and it requires an
|
||
actual byte vector, not anything that can be converted to one with Into.</p>
|
||
<h5 id="examples-2"><a class="doc-anchor" href="#examples-2">§</a>Examples</h5>
|
||
<div class="example-wrap"><pre class="rust rust-example-rendered"><code><span class="kw">use </span>std::ffi::CString;
|
||
|
||
<span class="kw">let </span>raw = <span class="string">b"foo"</span>.to_vec();
|
||
<span class="kw">unsafe </span>{
|
||
<span class="kw">let </span>c_string = CString::from_vec_unchecked(raw);
|
||
}</code></pre></div>
|
||
</div></details><details class="toggle method-toggle" open><summary><section id="method.from_raw" class="method"><span class="rightside"><span class="since" title="Stable since Rust version 1.4.0">1.4.0</span> · <a class="src" href="https://doc.rust-lang.org/1.84.1/src/alloc/ffi/c_str.rs.html#396">Source</a></span><h4 class="code-header">pub unsafe fn <a href="#method.from_raw" class="fn">from_raw</a>(ptr: <a class="primitive" href="https://doc.rust-lang.org/1.84.1/std/primitive.pointer.html">*mut </a><a class="primitive" href="https://doc.rust-lang.org/1.84.1/std/primitive.i8.html">i8</a>) -> <a class="struct" href="struct.CString.html" title="struct rustix::ffi::CString">CString</a></h4></section></summary><div class="docblock"><p>Retakes ownership of a <code>CString</code> that was transferred to C via
|
||
<a href="struct.CString.html#method.into_raw" title="method rustix::ffi::CString::into_raw"><code>CString::into_raw</code></a>.</p>
|
||
<p>Additionally, the length of the string will be recalculated from the pointer.</p>
|
||
<h5 id="safety-1"><a class="doc-anchor" href="#safety-1">§</a>Safety</h5>
|
||
<p>This should only ever be called with a pointer that was earlier
|
||
obtained by calling <a href="struct.CString.html#method.into_raw" title="method rustix::ffi::CString::into_raw"><code>CString::into_raw</code></a>. Other usage (e.g., trying to take
|
||
ownership of a string that was allocated by foreign code) is likely to lead
|
||
to undefined behavior or allocator corruption.</p>
|
||
<p>It should be noted that the length isn’t just “recomputed,” but that
|
||
the recomputed length must match the original length from the
|
||
<a href="struct.CString.html#method.into_raw" title="method rustix::ffi::CString::into_raw"><code>CString::into_raw</code></a> call. This means the <a href="struct.CString.html#method.into_raw" title="method rustix::ffi::CString::into_raw"><code>CString::into_raw</code></a>/<code>from_raw</code>
|
||
methods should not be used when passing the string to C functions that can
|
||
modify the string’s length.</p>
|
||
<blockquote>
|
||
<p><strong>Note:</strong> If you need to borrow a string that was allocated by
|
||
foreign code, use <a href="struct.CStr.html" title="struct rustix::ffi::CStr"><code>CStr</code></a>. If you need to take ownership of
|
||
a string that was allocated by foreign code, you will need to
|
||
make your own provisions for freeing it appropriately, likely
|
||
with the foreign code’s API to do that.</p>
|
||
</blockquote>
|
||
<h5 id="examples-3"><a class="doc-anchor" href="#examples-3">§</a>Examples</h5>
|
||
<p>Creates a <code>CString</code>, pass ownership to an <code>extern</code> function (via raw pointer), then retake
|
||
ownership with <code>from_raw</code>:</p>
|
||
|
||
<div class="example-wrap ignore"><a href="#" class="tooltip" title="This example is not tested">ⓘ</a><pre class="rust rust-example-rendered"><code><span class="kw">use </span>std::ffi::CString;
|
||
<span class="kw">use </span>std::os::raw::c_char;
|
||
|
||
<span class="kw">extern </span><span class="string">"C" </span>{
|
||
<span class="kw">fn </span>some_extern_function(s: <span class="kw-2">*mut </span>c_char);
|
||
}
|
||
|
||
<span class="kw">let </span>c_string = CString::new(<span class="string">"Hello!"</span>).expect(<span class="string">"CString::new failed"</span>);
|
||
<span class="kw">let </span>raw = c_string.into_raw();
|
||
<span class="kw">unsafe </span>{
|
||
some_extern_function(raw);
|
||
<span class="kw">let </span>c_string = CString::from_raw(raw);
|
||
}</code></pre></div>
|
||
</div></details><details class="toggle method-toggle" open><summary><section id="method.into_raw" class="method"><span class="rightside"><span class="since" title="Stable since Rust version 1.4.0">1.4.0</span> · <a class="src" href="https://doc.rust-lang.org/1.84.1/src/alloc/ffi/c_str.rs.html#449">Source</a></span><h4 class="code-header">pub fn <a href="#method.into_raw" class="fn">into_raw</a>(self) -> <a class="primitive" href="https://doc.rust-lang.org/1.84.1/std/primitive.pointer.html">*mut </a><a class="primitive" href="https://doc.rust-lang.org/1.84.1/std/primitive.i8.html">i8</a></h4></section></summary><div class="docblock"><p>Consumes the <code>CString</code> and transfers ownership of the string to a C caller.</p>
|
||
<p>The pointer which this function returns must be returned to Rust and reconstituted using
|
||
<a href="struct.CString.html#method.from_raw" title="associated function rustix::ffi::CString::from_raw"><code>CString::from_raw</code></a> to be properly deallocated. Specifically, one
|
||
should <em>not</em> use the standard C <code>free()</code> function to deallocate
|
||
this string.</p>
|
||
<p>Failure to call <a href="struct.CString.html#method.from_raw" title="associated function rustix::ffi::CString::from_raw"><code>CString::from_raw</code></a> will lead to a memory leak.</p>
|
||
<p>The C side must <strong>not</strong> modify the length of the string (by writing a
|
||
nul byte somewhere inside the string or removing the final one) before
|
||
it makes it back into Rust using <a href="struct.CString.html#method.from_raw" title="associated function rustix::ffi::CString::from_raw"><code>CString::from_raw</code></a>. See the safety section
|
||
in <a href="struct.CString.html#method.from_raw" title="associated function rustix::ffi::CString::from_raw"><code>CString::from_raw</code></a>.</p>
|
||
<h5 id="examples-4"><a class="doc-anchor" href="#examples-4">§</a>Examples</h5>
|
||
<div class="example-wrap"><pre class="rust rust-example-rendered"><code><span class="kw">use </span>std::ffi::CString;
|
||
|
||
<span class="kw">let </span>c_string = CString::new(<span class="string">"foo"</span>).expect(<span class="string">"CString::new failed"</span>);
|
||
|
||
<span class="kw">let </span>ptr = c_string.into_raw();
|
||
|
||
<span class="kw">unsafe </span>{
|
||
<span class="macro">assert_eq!</span>(<span class="string">b'f'</span>, <span class="kw-2">*</span>ptr <span class="kw">as </span>u8);
|
||
<span class="macro">assert_eq!</span>(<span class="string">b'o'</span>, <span class="kw-2">*</span>ptr.add(<span class="number">1</span>) <span class="kw">as </span>u8);
|
||
<span class="macro">assert_eq!</span>(<span class="string">b'o'</span>, <span class="kw-2">*</span>ptr.add(<span class="number">2</span>) <span class="kw">as </span>u8);
|
||
<span class="macro">assert_eq!</span>(<span class="string">b'\0'</span>, <span class="kw-2">*</span>ptr.add(<span class="number">3</span>) <span class="kw">as </span>u8);
|
||
|
||
<span class="comment">// retake pointer to free memory
|
||
</span><span class="kw">let _ </span>= CString::from_raw(ptr);
|
||
}</code></pre></div>
|
||
</div></details><details class="toggle method-toggle" open><summary><section id="method.into_string" class="method"><span class="rightside"><span class="since" title="Stable since Rust version 1.7.0">1.7.0</span> · <a class="src" href="https://doc.rust-lang.org/1.84.1/src/alloc/ffi/c_str.rs.html#472">Source</a></span><h4 class="code-header">pub fn <a href="#method.into_string" class="fn">into_string</a>(self) -> <a class="enum" href="https://doc.rust-lang.org/1.84.1/core/result/enum.Result.html" title="enum core::result::Result">Result</a><<a class="struct" href="https://doc.rust-lang.org/1.84.1/alloc/string/struct.String.html" title="struct alloc::string::String">String</a>, <a class="struct" href="https://doc.rust-lang.org/1.84.1/alloc/ffi/c_str/struct.IntoStringError.html" title="struct alloc::ffi::c_str::IntoStringError">IntoStringError</a>></h4></section></summary><div class="docblock"><p>Converts the <code>CString</code> into a <a href="https://doc.rust-lang.org/1.84.1/alloc/string/struct.String.html" title="struct alloc::string::String"><code>String</code></a> if it contains valid UTF-8 data.</p>
|
||
<p>On failure, ownership of the original <code>CString</code> is returned.</p>
|
||
<h5 id="examples-5"><a class="doc-anchor" href="#examples-5">§</a>Examples</h5>
|
||
<div class="example-wrap"><pre class="rust rust-example-rendered"><code><span class="kw">use </span>std::ffi::CString;
|
||
|
||
<span class="kw">let </span>valid_utf8 = <span class="macro">vec!</span>[<span class="string">b'f'</span>, <span class="string">b'o'</span>, <span class="string">b'o'</span>];
|
||
<span class="kw">let </span>cstring = CString::new(valid_utf8).expect(<span class="string">"CString::new failed"</span>);
|
||
<span class="macro">assert_eq!</span>(cstring.into_string().expect(<span class="string">"into_string() call failed"</span>), <span class="string">"foo"</span>);
|
||
|
||
<span class="kw">let </span>invalid_utf8 = <span class="macro">vec!</span>[<span class="string">b'f'</span>, <span class="number">0xff</span>, <span class="string">b'o'</span>, <span class="string">b'o'</span>];
|
||
<span class="kw">let </span>cstring = CString::new(invalid_utf8).expect(<span class="string">"CString::new failed"</span>);
|
||
<span class="kw">let </span>err = cstring.into_string().err().expect(<span class="string">"into_string().err() failed"</span>);
|
||
<span class="macro">assert_eq!</span>(err.utf8_error().valid_up_to(), <span class="number">1</span>);</code></pre></div>
|
||
</div></details><details class="toggle method-toggle" open><summary><section id="method.into_bytes" class="method"><span class="rightside"><span class="since" title="Stable since Rust version 1.7.0">1.7.0</span> · <a class="src" href="https://doc.rust-lang.org/1.84.1/src/alloc/ffi/c_str.rs.html#496">Source</a></span><h4 class="code-header">pub fn <a href="#method.into_bytes" class="fn">into_bytes</a>(self) -> <a class="struct" href="https://doc.rust-lang.org/1.84.1/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a><<a class="primitive" href="https://doc.rust-lang.org/1.84.1/std/primitive.u8.html">u8</a>></h4></section></summary><div class="docblock"><p>Consumes the <code>CString</code> and returns the underlying byte buffer.</p>
|
||
<p>The returned buffer does <strong>not</strong> contain the trailing nul
|
||
terminator, and it is guaranteed to not have any interior nul
|
||
bytes.</p>
|
||
<h5 id="examples-6"><a class="doc-anchor" href="#examples-6">§</a>Examples</h5>
|
||
<div class="example-wrap"><pre class="rust rust-example-rendered"><code><span class="kw">use </span>std::ffi::CString;
|
||
|
||
<span class="kw">let </span>c_string = CString::new(<span class="string">"foo"</span>).expect(<span class="string">"CString::new failed"</span>);
|
||
<span class="kw">let </span>bytes = c_string.into_bytes();
|
||
<span class="macro">assert_eq!</span>(bytes, <span class="macro">vec!</span>[<span class="string">b'f'</span>, <span class="string">b'o'</span>, <span class="string">b'o'</span>]);</code></pre></div>
|
||
</div></details><details class="toggle method-toggle" open><summary><section id="method.into_bytes_with_nul" class="method"><span class="rightside"><span class="since" title="Stable since Rust version 1.7.0">1.7.0</span> · <a class="src" href="https://doc.rust-lang.org/1.84.1/src/alloc/ffi/c_str.rs.html#517">Source</a></span><h4 class="code-header">pub fn <a href="#method.into_bytes_with_nul" class="fn">into_bytes_with_nul</a>(self) -> <a class="struct" href="https://doc.rust-lang.org/1.84.1/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a><<a class="primitive" href="https://doc.rust-lang.org/1.84.1/std/primitive.u8.html">u8</a>></h4></section></summary><div class="docblock"><p>Equivalent to <a href="struct.CString.html#method.into_bytes" title="method rustix::ffi::CString::into_bytes"><code>CString::into_bytes()</code></a> except that the
|
||
returned vector includes the trailing nul terminator.</p>
|
||
<h5 id="examples-7"><a class="doc-anchor" href="#examples-7">§</a>Examples</h5>
|
||
<div class="example-wrap"><pre class="rust rust-example-rendered"><code><span class="kw">use </span>std::ffi::CString;
|
||
|
||
<span class="kw">let </span>c_string = CString::new(<span class="string">"foo"</span>).expect(<span class="string">"CString::new failed"</span>);
|
||
<span class="kw">let </span>bytes = c_string.into_bytes_with_nul();
|
||
<span class="macro">assert_eq!</span>(bytes, <span class="macro">vec!</span>[<span class="string">b'f'</span>, <span class="string">b'o'</span>, <span class="string">b'o'</span>, <span class="string">b'\0'</span>]);</code></pre></div>
|
||
</div></details><details class="toggle method-toggle" open><summary><section id="method.as_bytes" class="method"><span class="rightside"><span class="since" title="Stable since Rust version 1.0.0">1.0.0</span> · <a class="src" href="https://doc.rust-lang.org/1.84.1/src/alloc/ffi/c_str.rs.html#540">Source</a></span><h4 class="code-header">pub fn <a href="#method.as_bytes" class="fn">as_bytes</a>(&self) -> &[<a class="primitive" href="https://doc.rust-lang.org/1.84.1/std/primitive.u8.html">u8</a>] <a href="#" class="tooltip" data-notable-ty="&[u8]">ⓘ</a></h4></section></summary><div class="docblock"><p>Returns the contents of this <code>CString</code> as a slice of bytes.</p>
|
||
<p>The returned slice does <strong>not</strong> contain the trailing nul
|
||
terminator, and it is guaranteed to not have any interior nul
|
||
bytes. If you need the nul terminator, use
|
||
<a href="struct.CString.html#method.as_bytes_with_nul" title="method rustix::ffi::CString::as_bytes_with_nul"><code>CString::as_bytes_with_nul</code></a> instead.</p>
|
||
<h5 id="examples-8"><a class="doc-anchor" href="#examples-8">§</a>Examples</h5>
|
||
<div class="example-wrap"><pre class="rust rust-example-rendered"><code><span class="kw">use </span>std::ffi::CString;
|
||
|
||
<span class="kw">let </span>c_string = CString::new(<span class="string">"foo"</span>).expect(<span class="string">"CString::new failed"</span>);
|
||
<span class="kw">let </span>bytes = c_string.as_bytes();
|
||
<span class="macro">assert_eq!</span>(bytes, <span class="kw-2">&</span>[<span class="string">b'f'</span>, <span class="string">b'o'</span>, <span class="string">b'o'</span>]);</code></pre></div>
|
||
</div></details><details class="toggle method-toggle" open><summary><section id="method.as_bytes_with_nul" class="method"><span class="rightside"><span class="since" title="Stable since Rust version 1.0.0">1.0.0</span> · <a class="src" href="https://doc.rust-lang.org/1.84.1/src/alloc/ffi/c_str.rs.html#560">Source</a></span><h4 class="code-header">pub fn <a href="#method.as_bytes_with_nul" class="fn">as_bytes_with_nul</a>(&self) -> &[<a class="primitive" href="https://doc.rust-lang.org/1.84.1/std/primitive.u8.html">u8</a>] <a href="#" class="tooltip" data-notable-ty="&[u8]">ⓘ</a></h4></section></summary><div class="docblock"><p>Equivalent to <a href="struct.CString.html#method.as_bytes" title="method rustix::ffi::CString::as_bytes"><code>CString::as_bytes()</code></a> except that the
|
||
returned slice includes the trailing nul terminator.</p>
|
||
<h5 id="examples-9"><a class="doc-anchor" href="#examples-9">§</a>Examples</h5>
|
||
<div class="example-wrap"><pre class="rust rust-example-rendered"><code><span class="kw">use </span>std::ffi::CString;
|
||
|
||
<span class="kw">let </span>c_string = CString::new(<span class="string">"foo"</span>).expect(<span class="string">"CString::new failed"</span>);
|
||
<span class="kw">let </span>bytes = c_string.as_bytes_with_nul();
|
||
<span class="macro">assert_eq!</span>(bytes, <span class="kw-2">&</span>[<span class="string">b'f'</span>, <span class="string">b'o'</span>, <span class="string">b'o'</span>, <span class="string">b'\0'</span>]);</code></pre></div>
|
||
</div></details><details class="toggle method-toggle" open><summary><section id="method.as_c_str" class="method"><span class="rightside"><span class="since" title="Stable since Rust version 1.20.0">1.20.0</span> · <a class="src" href="https://doc.rust-lang.org/1.84.1/src/alloc/ffi/c_str.rs.html#580">Source</a></span><h4 class="code-header">pub fn <a href="#method.as_c_str" class="fn">as_c_str</a>(&self) -> &<a class="struct" href="struct.CStr.html" title="struct rustix::ffi::CStr">CStr</a></h4></section></summary><div class="docblock"><p>Extracts a <a href="struct.CStr.html" title="struct rustix::ffi::CStr"><code>CStr</code></a> slice containing the entire string.</p>
|
||
<h5 id="examples-10"><a class="doc-anchor" href="#examples-10">§</a>Examples</h5>
|
||
<div class="example-wrap"><pre class="rust rust-example-rendered"><code><span class="kw">use </span>std::ffi::{CString, CStr};
|
||
|
||
<span class="kw">let </span>c_string = CString::new(<span class="string">b"foo"</span>.to_vec()).expect(<span class="string">"CString::new failed"</span>);
|
||
<span class="kw">let </span>cstr = c_string.as_c_str();
|
||
<span class="macro">assert_eq!</span>(cstr,
|
||
CStr::from_bytes_with_nul(<span class="string">b"foo\0"</span>).expect(<span class="string">"CStr::from_bytes_with_nul failed"</span>));</code></pre></div>
|
||
</div></details><details class="toggle method-toggle" open><summary><section id="method.into_boxed_c_str" class="method"><span class="rightside"><span class="since" title="Stable since Rust version 1.20.0">1.20.0</span> · <a class="src" href="https://doc.rust-lang.org/1.84.1/src/alloc/ffi/c_str.rs.html#598">Source</a></span><h4 class="code-header">pub fn <a href="#method.into_boxed_c_str" class="fn">into_boxed_c_str</a>(self) -> <a class="struct" href="https://doc.rust-lang.org/1.84.1/alloc/boxed/struct.Box.html" title="struct alloc::boxed::Box">Box</a><<a class="struct" href="struct.CStr.html" title="struct rustix::ffi::CStr">CStr</a>></h4></section></summary><div class="docblock"><p>Converts this <code>CString</code> into a boxed <a href="struct.CStr.html" title="struct rustix::ffi::CStr"><code>CStr</code></a>.</p>
|
||
<h5 id="examples-11"><a class="doc-anchor" href="#examples-11">§</a>Examples</h5>
|
||
<div class="example-wrap"><pre class="rust rust-example-rendered"><code><span class="kw">use </span>std::ffi::{CString, CStr};
|
||
|
||
<span class="kw">let </span>c_string = CString::new(<span class="string">b"foo"</span>.to_vec()).expect(<span class="string">"CString::new failed"</span>);
|
||
<span class="kw">let </span>boxed = c_string.into_boxed_c_str();
|
||
<span class="macro">assert_eq!</span>(<span class="kw-2">&*</span>boxed,
|
||
CStr::from_bytes_with_nul(<span class="string">b"foo\0"</span>).expect(<span class="string">"CStr::from_bytes_with_nul failed"</span>));</code></pre></div>
|
||
</div></details><details class="toggle method-toggle" open><summary><section id="method.from_vec_with_nul_unchecked" class="method"><span class="rightside"><span class="since" title="Stable since Rust version 1.58.0">1.58.0</span> · <a class="src" href="https://doc.rust-lang.org/1.84.1/src/alloc/ffi/c_str.rs.html#632">Source</a></span><h4 class="code-header">pub unsafe fn <a href="#method.from_vec_with_nul_unchecked" class="fn">from_vec_with_nul_unchecked</a>(v: <a class="struct" href="https://doc.rust-lang.org/1.84.1/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a><<a class="primitive" href="https://doc.rust-lang.org/1.84.1/std/primitive.u8.html">u8</a>>) -> <a class="struct" href="struct.CString.html" title="struct rustix::ffi::CString">CString</a></h4></section></summary><div class="docblock"><p>Converts a <code><a href="https://doc.rust-lang.org/1.84.1/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a><<a href="https://doc.rust-lang.org/1.84.1/std/primitive.u8.html" title="primitive u8">u8</a>></code> to a <a href="struct.CString.html" title="struct rustix::ffi::CString"><code>CString</code></a> without checking the
|
||
invariants on the given <a href="https://doc.rust-lang.org/1.84.1/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec"><code>Vec</code></a>.</p>
|
||
<h5 id="safety-2"><a class="doc-anchor" href="#safety-2">§</a>Safety</h5>
|
||
<p>The given <a href="https://doc.rust-lang.org/1.84.1/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec"><code>Vec</code></a> <strong>must</strong> have one nul byte as its last element.
|
||
This means it cannot be empty nor have any other nul byte anywhere else.</p>
|
||
<h5 id="example"><a class="doc-anchor" href="#example">§</a>Example</h5>
|
||
<div class="example-wrap"><pre class="rust rust-example-rendered"><code><span class="kw">use </span>std::ffi::CString;
|
||
<span class="macro">assert_eq!</span>(
|
||
<span class="kw">unsafe </span>{ CString::from_vec_with_nul_unchecked(<span class="string">b"abc\0"</span>.to_vec()) },
|
||
<span class="kw">unsafe </span>{ CString::from_vec_unchecked(<span class="string">b"abc"</span>.to_vec()) }
|
||
);</code></pre></div>
|
||
</div></details><details class="toggle method-toggle" open><summary><section id="method.from_vec_with_nul" class="method"><span class="rightside"><span class="since" title="Stable since Rust version 1.58.0">1.58.0</span> · <a class="src" href="https://doc.rust-lang.org/1.84.1/src/alloc/ffi/c_str.rs.html#675">Source</a></span><h4 class="code-header">pub fn <a href="#method.from_vec_with_nul" class="fn">from_vec_with_nul</a>(v: <a class="struct" href="https://doc.rust-lang.org/1.84.1/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a><<a class="primitive" href="https://doc.rust-lang.org/1.84.1/std/primitive.u8.html">u8</a>>) -> <a class="enum" href="https://doc.rust-lang.org/1.84.1/core/result/enum.Result.html" title="enum core::result::Result">Result</a><<a class="struct" href="struct.CString.html" title="struct rustix::ffi::CString">CString</a>, <a class="struct" href="https://doc.rust-lang.org/1.84.1/alloc/ffi/c_str/struct.FromVecWithNulError.html" title="struct alloc::ffi::c_str::FromVecWithNulError">FromVecWithNulError</a>></h4></section></summary><div class="docblock"><p>Attempts to converts a <code><a href="https://doc.rust-lang.org/1.84.1/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a><<a href="https://doc.rust-lang.org/1.84.1/std/primitive.u8.html" title="primitive u8">u8</a>></code> to a <a href="struct.CString.html" title="struct rustix::ffi::CString"><code>CString</code></a>.</p>
|
||
<p>Runtime checks are present to ensure there is only one nul byte in the
|
||
<a href="https://doc.rust-lang.org/1.84.1/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec"><code>Vec</code></a>, its last element.</p>
|
||
<h5 id="errors-1"><a class="doc-anchor" href="#errors-1">§</a>Errors</h5>
|
||
<p>If a nul byte is present and not the last element or no nul bytes
|
||
is present, an error will be returned.</p>
|
||
<h5 id="examples-12"><a class="doc-anchor" href="#examples-12">§</a>Examples</h5>
|
||
<p>A successful conversion will produce the same result as <a href="struct.CString.html#method.new" title="associated function rustix::ffi::CString::new"><code>CString::new</code></a>
|
||
when called without the ending nul byte.</p>
|
||
|
||
<div class="example-wrap"><pre class="rust rust-example-rendered"><code><span class="kw">use </span>std::ffi::CString;
|
||
<span class="macro">assert_eq!</span>(
|
||
CString::from_vec_with_nul(<span class="string">b"abc\0"</span>.to_vec())
|
||
.expect(<span class="string">"CString::from_vec_with_nul failed"</span>),
|
||
CString::new(<span class="string">b"abc"</span>.to_vec()).expect(<span class="string">"CString::new failed"</span>)
|
||
);</code></pre></div>
|
||
<p>An incorrectly formatted <a href="https://doc.rust-lang.org/1.84.1/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec"><code>Vec</code></a> will produce an error.</p>
|
||
|
||
<div class="example-wrap"><pre class="rust rust-example-rendered"><code><span class="kw">use </span>std::ffi::{CString, FromVecWithNulError};
|
||
<span class="comment">// Interior nul byte
|
||
</span><span class="kw">let _</span>: FromVecWithNulError = CString::from_vec_with_nul(<span class="string">b"a\0bc"</span>.to_vec()).unwrap_err();
|
||
<span class="comment">// No nul byte
|
||
</span><span class="kw">let _</span>: FromVecWithNulError = CString::from_vec_with_nul(<span class="string">b"abc"</span>.to_vec()).unwrap_err();</code></pre></div>
|
||
</div></details></div></details></div><details class="toggle big-toggle" open><summary><h2 id="deref-methods-CStr" class="section-header"><span>Methods from <a class="trait" href="https://doc.rust-lang.org/1.84.1/core/ops/deref/trait.Deref.html" title="trait core::ops::deref::Deref">Deref</a><Target = <a class="struct" href="struct.CStr.html" title="struct rustix::ffi::CStr">CStr</a>></span><a href="#deref-methods-CStr" class="anchor">§</a></h2></summary><div id="deref-methods-CStr-1" class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.as_ptr" class="method"><span class="rightside"><span class="since" title="Stable since Rust version 1.0.0">1.0.0</span> · <a class="src" href="https://doc.rust-lang.org/1.84.1/src/core/ffi/c_str.rs.html#505">Source</a></span><h4 class="code-header">pub fn <a href="#method.as_ptr" class="fn">as_ptr</a>(&self) -> <a class="primitive" href="https://doc.rust-lang.org/1.84.1/std/primitive.pointer.html">*const </a><a class="primitive" href="https://doc.rust-lang.org/1.84.1/std/primitive.i8.html">i8</a></h4></section></summary><div class="docblock"><p>Returns the inner pointer to this C string.</p>
|
||
<p>The returned pointer will be valid for as long as <code>self</code> is, and points
|
||
to a contiguous region of memory terminated with a 0 byte to represent
|
||
the end of the string.</p>
|
||
<p>The type of the returned pointer is
|
||
<a href="https://doc.rust-lang.org/1.84.1/core/ffi/type.c_char.html" title="type core::ffi::c_char"><code>*const c_char</code></a>, and whether it’s
|
||
an alias for <code>*const i8</code> or <code>*const u8</code> is platform-specific.</p>
|
||
<p><strong>WARNING</strong></p>
|
||
<p>The returned pointer is read-only; writing to it (including passing it
|
||
to C code that writes to it) causes undefined behavior.</p>
|
||
<p>It is your responsibility to make sure that the underlying memory is not
|
||
freed too early. For example, the following code will cause undefined
|
||
behavior when <code>ptr</code> is used inside the <code>unsafe</code> block:</p>
|
||
|
||
<div class="example-wrap"><pre class="rust rust-example-rendered"><code><span class="kw">use </span>std::ffi::CString;
|
||
|
||
<span class="comment">// Do not do this:
|
||
</span><span class="kw">let </span>ptr = CString::new(<span class="string">"Hello"</span>).expect(<span class="string">"CString::new failed"</span>).as_ptr();
|
||
<span class="kw">unsafe </span>{
|
||
<span class="comment">// `ptr` is dangling
|
||
</span><span class="kw-2">*</span>ptr;
|
||
}</code></pre></div>
|
||
<p>This happens because the pointer returned by <code>as_ptr</code> does not carry any
|
||
lifetime information and the <code>CString</code> is deallocated immediately after
|
||
the <code>CString::new("Hello").expect("CString::new failed").as_ptr()</code>
|
||
expression is evaluated.
|
||
To fix the problem, bind the <code>CString</code> to a local variable:</p>
|
||
|
||
<div class="example-wrap"><pre class="rust rust-example-rendered"><code><span class="kw">use </span>std::ffi::CString;
|
||
|
||
<span class="kw">let </span>hello = CString::new(<span class="string">"Hello"</span>).expect(<span class="string">"CString::new failed"</span>);
|
||
<span class="kw">let </span>ptr = hello.as_ptr();
|
||
<span class="kw">unsafe </span>{
|
||
<span class="comment">// `ptr` is valid because `hello` is in scope
|
||
</span><span class="kw-2">*</span>ptr;
|
||
}</code></pre></div>
|
||
<p>This way, the lifetime of the <code>CString</code> in <code>hello</code> encompasses
|
||
the lifetime of <code>ptr</code> and the <code>unsafe</code> block.</p>
|
||
</div></details><details class="toggle method-toggle" open><summary><section id="method.count_bytes" class="method"><span class="rightside"><span class="since" title="Stable since Rust version 1.79.0">1.79.0</span> · <a class="src" href="https://doc.rust-lang.org/1.84.1/src/core/ffi/c_str.rs.html#541">Source</a></span><h4 class="code-header">pub fn <a href="#method.count_bytes" class="fn">count_bytes</a>(&self) -> <a class="primitive" href="https://doc.rust-lang.org/1.84.1/std/primitive.usize.html">usize</a></h4></section></summary><div class="docblock"><p>Returns the length of <code>self</code>. Like C’s <code>strlen</code>, this does not include the nul terminator.</p>
|
||
<blockquote>
|
||
<p><strong>Note</strong>: This method is currently implemented as a constant-time
|
||
cast, but it is planned to alter its definition in the future to
|
||
perform the length calculation whenever this method is called.</p>
|
||
</blockquote>
|
||
<h5 id="examples-13"><a class="doc-anchor" href="#examples-13">§</a>Examples</h5>
|
||
<div class="example-wrap"><pre class="rust rust-example-rendered"><code><span class="kw">use </span>std::ffi::CStr;
|
||
|
||
<span class="kw">let </span>cstr = CStr::from_bytes_with_nul(<span class="string">b"foo\0"</span>).unwrap();
|
||
<span class="macro">assert_eq!</span>(cstr.count_bytes(), <span class="number">3</span>);
|
||
|
||
<span class="kw">let </span>cstr = CStr::from_bytes_with_nul(<span class="string">b"\0"</span>).unwrap();
|
||
<span class="macro">assert_eq!</span>(cstr.count_bytes(), <span class="number">0</span>);</code></pre></div>
|
||
</div></details><details class="toggle method-toggle" open><summary><section id="method.is_empty" class="method"><span class="rightside"><span class="since" title="Stable since Rust version 1.71.0">1.71.0</span> · <a class="src" href="https://doc.rust-lang.org/1.84.1/src/core/ffi/c_str.rs.html#567">Source</a></span><h4 class="code-header">pub fn <a href="#method.is_empty" class="fn">is_empty</a>(&self) -> <a class="primitive" href="https://doc.rust-lang.org/1.84.1/std/primitive.bool.html">bool</a></h4></section></summary><div class="docblock"><p>Returns <code>true</code> if <code>self.to_bytes()</code> has a length of 0.</p>
|
||
<h5 id="examples-14"><a class="doc-anchor" href="#examples-14">§</a>Examples</h5>
|
||
<div class="example-wrap"><pre class="rust rust-example-rendered"><code><span class="kw">use </span>std::ffi::CStr;
|
||
|
||
<span class="kw">let </span>cstr = CStr::from_bytes_with_nul(<span class="string">b"foo\0"</span>)<span class="question-mark">?</span>;
|
||
<span class="macro">assert!</span>(!cstr.is_empty());
|
||
|
||
<span class="kw">let </span>empty_cstr = CStr::from_bytes_with_nul(<span class="string">b"\0"</span>)<span class="question-mark">?</span>;
|
||
<span class="macro">assert!</span>(empty_cstr.is_empty());
|
||
<span class="macro">assert!</span>(<span class="string">c""</span>.is_empty());</code></pre></div>
|
||
</div></details><details class="toggle method-toggle" open><summary><section id="method.to_bytes" class="method"><span class="rightside"><span class="since" title="Stable since Rust version 1.0.0">1.0.0</span> · <a class="src" href="https://doc.rust-lang.org/1.84.1/src/core/ffi/c_str.rs.html#596">Source</a></span><h4 class="code-header">pub fn <a href="#method.to_bytes" class="fn">to_bytes</a>(&self) -> &[<a class="primitive" href="https://doc.rust-lang.org/1.84.1/std/primitive.u8.html">u8</a>] <a href="#" class="tooltip" data-notable-ty="&[u8]">ⓘ</a></h4></section></summary><div class="docblock"><p>Converts this C string to a byte slice.</p>
|
||
<p>The returned slice will <strong>not</strong> contain the trailing nul terminator that this C
|
||
string has.</p>
|
||
<blockquote>
|
||
<p><strong>Note</strong>: This method is currently implemented as a constant-time
|
||
cast, but it is planned to alter its definition in the future to
|
||
perform the length calculation whenever this method is called.</p>
|
||
</blockquote>
|
||
<h5 id="examples-15"><a class="doc-anchor" href="#examples-15">§</a>Examples</h5>
|
||
<div class="example-wrap"><pre class="rust rust-example-rendered"><code><span class="kw">use </span>std::ffi::CStr;
|
||
|
||
<span class="kw">let </span>cstr = CStr::from_bytes_with_nul(<span class="string">b"foo\0"</span>).expect(<span class="string">"CStr::from_bytes_with_nul failed"</span>);
|
||
<span class="macro">assert_eq!</span>(cstr.to_bytes(), <span class="string">b"foo"</span>);</code></pre></div>
|
||
</div></details><details class="toggle method-toggle" open><summary><section id="method.to_bytes_with_nul" class="method"><span class="rightside"><span class="since" title="Stable since Rust version 1.0.0">1.0.0</span> · <a class="src" href="https://doc.rust-lang.org/1.84.1/src/core/ffi/c_str.rs.html#625">Source</a></span><h4 class="code-header">pub fn <a href="#method.to_bytes_with_nul" class="fn">to_bytes_with_nul</a>(&self) -> &[<a class="primitive" href="https://doc.rust-lang.org/1.84.1/std/primitive.u8.html">u8</a>] <a href="#" class="tooltip" data-notable-ty="&[u8]">ⓘ</a></h4></section></summary><div class="docblock"><p>Converts this C string to a byte slice containing the trailing 0 byte.</p>
|
||
<p>This function is the equivalent of <a href="struct.CStr.html#method.to_bytes" title="method rustix::ffi::CStr::to_bytes"><code>CStr::to_bytes</code></a> except that it
|
||
will retain the trailing nul terminator instead of chopping it off.</p>
|
||
<blockquote>
|
||
<p><strong>Note</strong>: This method is currently implemented as a 0-cost cast, but
|
||
it is planned to alter its definition in the future to perform the
|
||
length calculation whenever this method is called.</p>
|
||
</blockquote>
|
||
<h5 id="examples-16"><a class="doc-anchor" href="#examples-16">§</a>Examples</h5>
|
||
<div class="example-wrap"><pre class="rust rust-example-rendered"><code><span class="kw">use </span>std::ffi::CStr;
|
||
|
||
<span class="kw">let </span>cstr = CStr::from_bytes_with_nul(<span class="string">b"foo\0"</span>).expect(<span class="string">"CStr::from_bytes_with_nul failed"</span>);
|
||
<span class="macro">assert_eq!</span>(cstr.to_bytes_with_nul(), <span class="string">b"foo\0"</span>);</code></pre></div>
|
||
</div></details><details class="toggle method-toggle" open><summary><section id="method.bytes" class="method"><a class="src rightside" href="https://doc.rust-lang.org/1.84.1/src/core/ffi/c_str.rs.html#647">Source</a><h4 class="code-header">pub fn <a href="#method.bytes" class="fn">bytes</a>(&self) -> <a class="struct" href="https://doc.rust-lang.org/1.84.1/core/ffi/c_str/struct.Bytes.html" title="struct core::ffi::c_str::Bytes">Bytes</a><'_></h4></section><span class="item-info"><div class="stab unstable"><span class="emoji">🔬</span><span>This is a nightly-only experimental API. (<code>cstr_bytes</code>)</span></div></span></summary><div class="docblock"><p>Iterates over the bytes in this C string.</p>
|
||
<p>The returned iterator will <strong>not</strong> contain the trailing nul terminator
|
||
that this C string has.</p>
|
||
<h5 id="examples-17"><a class="doc-anchor" href="#examples-17">§</a>Examples</h5>
|
||
<div class="example-wrap"><pre class="rust rust-example-rendered"><code><span class="attr">#![feature(cstr_bytes)]
|
||
</span><span class="kw">use </span>std::ffi::CStr;
|
||
|
||
<span class="kw">let </span>cstr = CStr::from_bytes_with_nul(<span class="string">b"foo\0"</span>).expect(<span class="string">"CStr::from_bytes_with_nul failed"</span>);
|
||
<span class="macro">assert!</span>(cstr.bytes().eq(<span class="kw-2">*</span><span class="string">b"foo"</span>));</code></pre></div>
|
||
</div></details><details class="toggle method-toggle" open><summary><section id="method.to_str" class="method"><span class="rightside"><span class="since" title="Stable since Rust version 1.4.0">1.4.0</span> · <a class="src" href="https://doc.rust-lang.org/1.84.1/src/core/ffi/c_str.rs.html#669">Source</a></span><h4 class="code-header">pub fn <a href="#method.to_str" class="fn">to_str</a>(&self) -> <a class="enum" href="https://doc.rust-lang.org/1.84.1/core/result/enum.Result.html" title="enum core::result::Result">Result</a><&<a class="primitive" href="https://doc.rust-lang.org/1.84.1/std/primitive.str.html">str</a>, <a class="struct" href="https://doc.rust-lang.org/1.84.1/core/str/error/struct.Utf8Error.html" title="struct core::str::error::Utf8Error">Utf8Error</a>></h4></section></summary><div class="docblock"><p>Yields a <code>&<a href="https://doc.rust-lang.org/1.84.1/std/primitive.str.html" title="str">str</a></code> slice if the <code>CStr</code> contains valid UTF-8.</p>
|
||
<p>If the contents of the <code>CStr</code> are valid UTF-8 data, this
|
||
function will return the corresponding <code>&<a href="https://doc.rust-lang.org/1.84.1/std/primitive.str.html" title="str">str</a></code> slice. Otherwise,
|
||
it will return an error with details of where UTF-8 validation failed.</p>
|
||
<h5 id="examples-18"><a class="doc-anchor" href="#examples-18">§</a>Examples</h5>
|
||
<div class="example-wrap"><pre class="rust rust-example-rendered"><code><span class="kw">use </span>std::ffi::CStr;
|
||
|
||
<span class="kw">let </span>cstr = CStr::from_bytes_with_nul(<span class="string">b"foo\0"</span>).expect(<span class="string">"CStr::from_bytes_with_nul failed"</span>);
|
||
<span class="macro">assert_eq!</span>(cstr.to_str(), <span class="prelude-val">Ok</span>(<span class="string">"foo"</span>));</code></pre></div>
|
||
</div></details><details class="toggle method-toggle" open><summary><section id="method.to_string_lossy" class="method"><span class="rightside"><span class="since" title="Stable since Rust version 1.4.0">1.4.0</span> · <a class="src" href="https://doc.rust-lang.org/1.84.1/src/alloc/ffi/c_str.rs.html#1162">Source</a></span><h4 class="code-header">pub fn <a href="#method.to_string_lossy" class="fn">to_string_lossy</a>(&self) -> <a class="enum" href="https://doc.rust-lang.org/1.84.1/alloc/borrow/enum.Cow.html" title="enum alloc::borrow::Cow">Cow</a><'_, <a class="primitive" href="https://doc.rust-lang.org/1.84.1/std/primitive.str.html">str</a>></h4></section></summary><div class="docblock"><p>Converts a <code>CStr</code> into a <code><a href="https://doc.rust-lang.org/1.84.1/alloc/borrow/enum.Cow.html" title="enum alloc::borrow::Cow">Cow</a><<a href="https://doc.rust-lang.org/1.84.1/std/primitive.str.html" title="str">str</a>></code>.</p>
|
||
<p>If the contents of the <code>CStr</code> are valid UTF-8 data, this
|
||
function will return a <code><a href="https://doc.rust-lang.org/1.84.1/alloc/borrow/enum.Cow.html" title="enum alloc::borrow::Cow">Cow</a>::<a href="https://doc.rust-lang.org/1.84.1/alloc/borrow/enum.Cow.html#variant.Borrowed" title="variant alloc::borrow::Cow::Borrowed">Borrowed</a>(&<a href="https://doc.rust-lang.org/1.84.1/std/primitive.str.html" title="str">str</a>)</code>
|
||
with the corresponding <code>&<a href="https://doc.rust-lang.org/1.84.1/std/primitive.str.html" title="str">str</a></code> slice. Otherwise, it will
|
||
replace any invalid UTF-8 sequences with
|
||
<a href="https://doc.rust-lang.org/1.84.1/core/char/constant.REPLACEMENT_CHARACTER.html" title="std::char::REPLACEMENT_CHARACTER"><code>U+FFFD REPLACEMENT CHARACTER</code></a> and return a
|
||
<code><a href="https://doc.rust-lang.org/1.84.1/alloc/borrow/enum.Cow.html" title="enum alloc::borrow::Cow">Cow</a>::<a href="https://doc.rust-lang.org/1.84.1/alloc/borrow/enum.Cow.html#variant.Owned" title="variant alloc::borrow::Cow::Owned">Owned</a>(&<a href="https://doc.rust-lang.org/1.84.1/std/primitive.str.html" title="str">str</a>)</code> with the result.</p>
|
||
<h5 id="examples-19"><a class="doc-anchor" href="#examples-19">§</a>Examples</h5>
|
||
<p>Calling <code>to_string_lossy</code> on a <code>CStr</code> containing valid UTF-8. The leading
|
||
<code>c</code> on the string literal denotes a <code>CStr</code>.</p>
|
||
|
||
<div class="example-wrap"><pre class="rust rust-example-rendered"><code><span class="kw">use </span>std::borrow::Cow;
|
||
|
||
<span class="macro">assert_eq!</span>(<span class="string">c"Hello World"</span>.to_string_lossy(), Cow::Borrowed(<span class="string">"Hello World"</span>));</code></pre></div>
|
||
<p>Calling <code>to_string_lossy</code> on a <code>CStr</code> containing invalid UTF-8:</p>
|
||
|
||
<div class="example-wrap"><pre class="rust rust-example-rendered"><code><span class="kw">use </span>std::borrow::Cow;
|
||
|
||
<span class="macro">assert_eq!</span>(
|
||
<span class="string">c"Hello \xF0\x90\x80World"</span>.to_string_lossy(),
|
||
Cow::Owned(String::from(<span class="string">"Hello <20>World"</span>)) <span class="kw">as </span>Cow<<span class="lifetime">'_</span>, str>
|
||
);</code></pre></div>
|
||
</div></details></div></details><h2 id="trait-implementations" class="section-header">Trait Implementations<a href="#trait-implementations" class="anchor">§</a></h2><div id="trait-implementations-list"><details class="toggle implementors-toggle" open><summary><section id="impl-Arg-for-%26CString" class="impl"><a class="src rightside" href="../../src/rustix/path/arg.rs.html#523-558">Source</a><a href="#impl-Arg-for-%26CString" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="../path/trait.Arg.html" title="trait rustix::path::Arg">Arg</a> for &<a class="struct" href="struct.CString.html" title="struct rustix::ffi::CString">CString</a></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.as_str" class="method trait-impl"><a class="src rightside" href="../../src/rustix/path/arg.rs.html#525-527">Source</a><a href="#method.as_str" class="anchor">§</a><h4 class="code-header">fn <a href="../path/trait.Arg.html#tymethod.as_str" class="fn">as_str</a>(&self) -> <a class="type" href="../io/type.Result.html" title="type rustix::io::Result">Result</a><&<a class="primitive" href="https://doc.rust-lang.org/1.84.1/std/primitive.str.html">str</a>></h4></section></summary><div class='docblock'>Returns a view of this string as a string slice.</div></details><details class="toggle method-toggle" open><summary><section id="method.to_string_lossy-1" class="method trait-impl"><a class="src rightside" href="../../src/rustix/path/arg.rs.html#531-533">Source</a><a href="#method.to_string_lossy-1" class="anchor">§</a><h4 class="code-header">fn <a href="../path/trait.Arg.html#tymethod.to_string_lossy" class="fn">to_string_lossy</a>(&self) -> <a class="enum" href="https://doc.rust-lang.org/1.84.1/alloc/borrow/enum.Cow.html" title="enum alloc::borrow::Cow">Cow</a><'_, <a class="primitive" href="https://doc.rust-lang.org/1.84.1/std/primitive.str.html">str</a>></h4></section></summary><div class='docblock'>Returns a potentially-lossy rendering of this string as a
|
||
<code>Cow<'_, str></code>.</div></details><details class="toggle method-toggle" open><summary><section id="method.as_cow_c_str" class="method trait-impl"><a class="src rightside" href="../../src/rustix/path/arg.rs.html#537-539">Source</a><a href="#method.as_cow_c_str" class="anchor">§</a><h4 class="code-header">fn <a href="../path/trait.Arg.html#tymethod.as_cow_c_str" class="fn">as_cow_c_str</a>(&self) -> <a class="type" href="../io/type.Result.html" title="type rustix::io::Result">Result</a><<a class="enum" href="https://doc.rust-lang.org/1.84.1/alloc/borrow/enum.Cow.html" title="enum alloc::borrow::Cow">Cow</a><'_, <a class="struct" href="struct.CStr.html" title="struct rustix::ffi::CStr">CStr</a>>></h4></section></summary><div class='docblock'>Returns a view of this string as a maybe-owned <a href="struct.CStr.html" title="struct rustix::ffi::CStr"><code>CStr</code></a>.</div></details><details class="toggle method-toggle" open><summary><section id="method.into_c_str" class="method trait-impl"><a class="src rightside" href="../../src/rustix/path/arg.rs.html#543-548">Source</a><a href="#method.into_c_str" class="anchor">§</a><h4 class="code-header">fn <a href="../path/trait.Arg.html#tymethod.into_c_str" class="fn">into_c_str</a><'b>(self) -> <a class="type" href="../io/type.Result.html" title="type rustix::io::Result">Result</a><<a class="enum" href="https://doc.rust-lang.org/1.84.1/alloc/borrow/enum.Cow.html" title="enum alloc::borrow::Cow">Cow</a><'b, <a class="struct" href="struct.CStr.html" title="struct rustix::ffi::CStr">CStr</a>>><div class="where">where
|
||
Self: 'b,</div></h4></section></summary><div class='docblock'>Consumes <code>self</code> and returns a view of this string as a maybe-owned
|
||
<a href="struct.CStr.html" title="struct rustix::ffi::CStr"><code>CStr</code></a>.</div></details><details class="toggle method-toggle" open><summary><section id="method.into_with_c_str" class="method trait-impl"><a class="src rightside" href="../../src/rustix/path/arg.rs.html#551-557">Source</a><a href="#method.into_with_c_str" class="anchor">§</a><h4 class="code-header">fn <a href="../path/trait.Arg.html#tymethod.into_with_c_str" class="fn">into_with_c_str</a><T, F>(self, f: F) -> <a class="type" href="../io/type.Result.html" title="type rustix::io::Result">Result</a><T><div class="where">where
|
||
Self: <a class="trait" href="https://doc.rust-lang.org/1.84.1/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,
|
||
F: <a class="trait" href="https://doc.rust-lang.org/1.84.1/core/ops/function/trait.FnOnce.html" title="trait core::ops::function::FnOnce">FnOnce</a>(&<a class="struct" href="struct.CStr.html" title="struct rustix::ffi::CStr">CStr</a>) -> <a class="type" href="../io/type.Result.html" title="type rustix::io::Result">Result</a><T>,</div></h4></section></summary><div class='docblock'>Runs a closure with <code>self</code> passed in as a <code>&CStr</code>.</div></details></div></details><details class="toggle implementors-toggle" open><summary><section id="impl-Arg-for-CString" class="impl"><a class="src rightside" href="../../src/rustix/path/arg.rs.html#561-596">Source</a><a href="#impl-Arg-for-CString" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="../path/trait.Arg.html" title="trait rustix::path::Arg">Arg</a> for <a class="struct" href="struct.CString.html" title="struct rustix::ffi::CString">CString</a></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.as_str-1" class="method trait-impl"><a class="src rightside" href="../../src/rustix/path/arg.rs.html#563-565">Source</a><a href="#method.as_str-1" class="anchor">§</a><h4 class="code-header">fn <a href="../path/trait.Arg.html#tymethod.as_str" class="fn">as_str</a>(&self) -> <a class="type" href="../io/type.Result.html" title="type rustix::io::Result">Result</a><&<a class="primitive" href="https://doc.rust-lang.org/1.84.1/std/primitive.str.html">str</a>></h4></section></summary><div class='docblock'>Returns a view of this string as a string slice.</div></details><details class="toggle method-toggle" open><summary><section id="method.to_string_lossy-2" class="method trait-impl"><a class="src rightside" href="../../src/rustix/path/arg.rs.html#569-571">Source</a><a href="#method.to_string_lossy-2" class="anchor">§</a><h4 class="code-header">fn <a href="../path/trait.Arg.html#tymethod.to_string_lossy" class="fn">to_string_lossy</a>(&self) -> <a class="enum" href="https://doc.rust-lang.org/1.84.1/alloc/borrow/enum.Cow.html" title="enum alloc::borrow::Cow">Cow</a><'_, <a class="primitive" href="https://doc.rust-lang.org/1.84.1/std/primitive.str.html">str</a>></h4></section></summary><div class='docblock'>Returns a potentially-lossy rendering of this string as a
|
||
<code>Cow<'_, str></code>.</div></details><details class="toggle method-toggle" open><summary><section id="method.as_cow_c_str-1" class="method trait-impl"><a class="src rightside" href="../../src/rustix/path/arg.rs.html#575-577">Source</a><a href="#method.as_cow_c_str-1" class="anchor">§</a><h4 class="code-header">fn <a href="../path/trait.Arg.html#tymethod.as_cow_c_str" class="fn">as_cow_c_str</a>(&self) -> <a class="type" href="../io/type.Result.html" title="type rustix::io::Result">Result</a><<a class="enum" href="https://doc.rust-lang.org/1.84.1/alloc/borrow/enum.Cow.html" title="enum alloc::borrow::Cow">Cow</a><'_, <a class="struct" href="struct.CStr.html" title="struct rustix::ffi::CStr">CStr</a>>></h4></section></summary><div class='docblock'>Returns a view of this string as a maybe-owned <a href="struct.CStr.html" title="struct rustix::ffi::CStr"><code>CStr</code></a>.</div></details><details class="toggle method-toggle" open><summary><section id="method.into_c_str-1" class="method trait-impl"><a class="src rightside" href="../../src/rustix/path/arg.rs.html#581-586">Source</a><a href="#method.into_c_str-1" class="anchor">§</a><h4 class="code-header">fn <a href="../path/trait.Arg.html#tymethod.into_c_str" class="fn">into_c_str</a><'b>(self) -> <a class="type" href="../io/type.Result.html" title="type rustix::io::Result">Result</a><<a class="enum" href="https://doc.rust-lang.org/1.84.1/alloc/borrow/enum.Cow.html" title="enum alloc::borrow::Cow">Cow</a><'b, <a class="struct" href="struct.CStr.html" title="struct rustix::ffi::CStr">CStr</a>>><div class="where">where
|
||
Self: 'b,</div></h4></section></summary><div class='docblock'>Consumes <code>self</code> and returns a view of this string as a maybe-owned
|
||
<a href="struct.CStr.html" title="struct rustix::ffi::CStr"><code>CStr</code></a>.</div></details><details class="toggle method-toggle" open><summary><section id="method.into_with_c_str-1" class="method trait-impl"><a class="src rightside" href="../../src/rustix/path/arg.rs.html#589-595">Source</a><a href="#method.into_with_c_str-1" class="anchor">§</a><h4 class="code-header">fn <a href="../path/trait.Arg.html#tymethod.into_with_c_str" class="fn">into_with_c_str</a><T, F>(self, f: F) -> <a class="type" href="../io/type.Result.html" title="type rustix::io::Result">Result</a><T><div class="where">where
|
||
Self: <a class="trait" href="https://doc.rust-lang.org/1.84.1/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,
|
||
F: <a class="trait" href="https://doc.rust-lang.org/1.84.1/core/ops/function/trait.FnOnce.html" title="trait core::ops::function::FnOnce">FnOnce</a>(&<a class="struct" href="struct.CStr.html" title="struct rustix::ffi::CStr">CStr</a>) -> <a class="type" href="../io/type.Result.html" title="type rustix::io::Result">Result</a><T>,</div></h4></section></summary><div class='docblock'>Runs a closure with <code>self</code> passed in as a <code>&CStr</code>.</div></details></div></details><details class="toggle implementors-toggle" open><summary><section id="impl-AsRef%3CCStr%3E-for-CString" class="impl"><span class="rightside"><span class="since" title="Stable since Rust version 1.7.0">1.7.0</span> · <a class="src" href="https://doc.rust-lang.org/1.84.1/src/alloc/ffi/c_str.rs.html#1114">Source</a></span><a href="#impl-AsRef%3CCStr%3E-for-CString" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="https://doc.rust-lang.org/1.84.1/core/convert/trait.AsRef.html" title="trait core::convert::AsRef">AsRef</a><<a class="struct" href="struct.CStr.html" title="struct rustix::ffi::CStr">CStr</a>> for <a class="struct" href="struct.CString.html" title="struct rustix::ffi::CString">CString</a></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.as_ref" class="method trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/1.84.1/src/alloc/ffi/c_str.rs.html#1116">Source</a><a href="#method.as_ref" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.84.1/core/convert/trait.AsRef.html#tymethod.as_ref" class="fn">as_ref</a>(&self) -> &<a class="struct" href="struct.CStr.html" title="struct rustix::ffi::CStr">CStr</a></h4></section></summary><div class='docblock'>Converts this type into a shared reference of the (usually inferred) input type.</div></details></div></details><details class="toggle implementors-toggle" open><summary><section id="impl-Borrow%3CCStr%3E-for-CString" class="impl"><span class="rightside"><span class="since" title="Stable since Rust version 1.3.0">1.3.0</span> · <a class="src" href="https://doc.rust-lang.org/1.84.1/src/alloc/ffi/c_str.rs.html#747">Source</a></span><a href="#impl-Borrow%3CCStr%3E-for-CString" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="https://doc.rust-lang.org/1.84.1/core/borrow/trait.Borrow.html" title="trait core::borrow::Borrow">Borrow</a><<a class="struct" href="struct.CStr.html" title="struct rustix::ffi::CStr">CStr</a>> for <a class="struct" href="struct.CString.html" title="struct rustix::ffi::CString">CString</a></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.borrow" class="method trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/1.84.1/src/alloc/ffi/c_str.rs.html#749">Source</a><a href="#method.borrow" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.84.1/core/borrow/trait.Borrow.html#tymethod.borrow" class="fn">borrow</a>(&self) -> &<a class="struct" href="struct.CStr.html" title="struct rustix::ffi::CStr">CStr</a></h4></section></summary><div class='docblock'>Immutably borrows from an owned value. <a href="https://doc.rust-lang.org/1.84.1/core/borrow/trait.Borrow.html#tymethod.borrow">Read more</a></div></details></div></details><details class="toggle implementors-toggle" open><summary><section id="impl-Clone-for-CString" class="impl"><span class="rightside"><span class="since" title="Stable since Rust version 1.64.0">1.64.0</span> · <a class="src" href="https://doc.rust-lang.org/1.84.1/src/alloc/ffi/c_str.rs.html#108">Source</a></span><a href="#impl-Clone-for-CString" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="https://doc.rust-lang.org/1.84.1/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> for <a class="struct" href="struct.CString.html" title="struct rustix::ffi::CString">CString</a></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.clone" class="method trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/1.84.1/src/alloc/ffi/c_str.rs.html#108">Source</a><a href="#method.clone" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.84.1/core/clone/trait.Clone.html#tymethod.clone" class="fn">clone</a>(&self) -> <a class="struct" href="struct.CString.html" title="struct rustix::ffi::CString">CString</a></h4></section></summary><div class='docblock'>Returns a copy of the value. <a href="https://doc.rust-lang.org/1.84.1/core/clone/trait.Clone.html#tymethod.clone">Read more</a></div></details><details class="toggle method-toggle" open><summary><section id="method.clone_from" class="method trait-impl"><span class="rightside"><span class="since" title="Stable since Rust version 1.0.0">1.0.0</span> · <a class="src" href="https://doc.rust-lang.org/1.84.1/src/core/clone.rs.html#174">Source</a></span><a href="#method.clone_from" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.84.1/core/clone/trait.Clone.html#method.clone_from" class="fn">clone_from</a>(&mut self, source: &Self)</h4></section></summary><div class='docblock'>Performs copy-assignment from <code>source</code>. <a href="https://doc.rust-lang.org/1.84.1/core/clone/trait.Clone.html#method.clone_from">Read more</a></div></details></div></details><details class="toggle implementors-toggle" open><summary><section id="impl-Debug-for-CString" class="impl"><span class="rightside"><span class="since" title="Stable since Rust version 1.0.0">1.0.0</span> · <a class="src" href="https://doc.rust-lang.org/1.84.1/src/alloc/ffi/c_str.rs.html#720">Source</a></span><a href="#impl-Debug-for-CString" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="https://doc.rust-lang.org/1.84.1/core/fmt/trait.Debug.html" title="trait core::fmt::Debug">Debug</a> for <a class="struct" href="struct.CString.html" title="struct rustix::ffi::CString">CString</a></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.fmt" class="method trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/1.84.1/src/alloc/ffi/c_str.rs.html#721">Source</a><a href="#method.fmt" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.84.1/core/fmt/trait.Debug.html#tymethod.fmt" class="fn">fmt</a>(&self, f: &mut <a class="struct" href="https://doc.rust-lang.org/1.84.1/core/fmt/struct.Formatter.html" title="struct core::fmt::Formatter">Formatter</a><'_>) -> <a class="enum" href="https://doc.rust-lang.org/1.84.1/core/result/enum.Result.html" title="enum core::result::Result">Result</a><<a class="primitive" href="https://doc.rust-lang.org/1.84.1/std/primitive.unit.html">()</a>, <a class="struct" href="https://doc.rust-lang.org/1.84.1/core/fmt/struct.Error.html" title="struct core::fmt::Error">Error</a>></h4></section></summary><div class='docblock'>Formats the value using the given formatter. <a href="https://doc.rust-lang.org/1.84.1/core/fmt/trait.Debug.html#tymethod.fmt">Read more</a></div></details></div></details><details class="toggle implementors-toggle" open><summary><section id="impl-Default-for-CString" class="impl"><span class="rightside"><span class="since" title="Stable since Rust version 1.10.0">1.10.0</span> · <a class="src" href="https://doc.rust-lang.org/1.84.1/src/alloc/ffi/c_str.rs.html#738">Source</a></span><a href="#impl-Default-for-CString" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="https://doc.rust-lang.org/1.84.1/core/default/trait.Default.html" title="trait core::default::Default">Default</a> for <a class="struct" href="struct.CString.html" title="struct rustix::ffi::CString">CString</a></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.default" class="method trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/1.84.1/src/alloc/ffi/c_str.rs.html#740">Source</a><a href="#method.default" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.84.1/core/default/trait.Default.html#tymethod.default" class="fn">default</a>() -> <a class="struct" href="struct.CString.html" title="struct rustix::ffi::CString">CString</a></h4></section></summary><div class="docblock"><p>Creates an empty <code>CString</code>.</p>
|
||
</div></details></div></details><details class="toggle implementors-toggle" open><summary><section id="impl-Deref-for-CString" class="impl"><span class="rightside"><span class="since" title="Stable since Rust version 1.0.0">1.0.0</span> · <a class="src" href="https://doc.rust-lang.org/1.84.1/src/alloc/ffi/c_str.rs.html#710">Source</a></span><a href="#impl-Deref-for-CString" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="https://doc.rust-lang.org/1.84.1/core/ops/deref/trait.Deref.html" title="trait core::ops::deref::Deref">Deref</a> for <a class="struct" href="struct.CString.html" title="struct rustix::ffi::CString">CString</a></h3></section></summary><div class="impl-items"><details class="toggle" open><summary><section id="associatedtype.Target" class="associatedtype trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/1.84.1/src/alloc/ffi/c_str.rs.html#711">Source</a><a href="#associatedtype.Target" class="anchor">§</a><h4 class="code-header">type <a href="https://doc.rust-lang.org/1.84.1/core/ops/deref/trait.Deref.html#associatedtype.Target" class="associatedtype">Target</a> = <a class="struct" href="struct.CStr.html" title="struct rustix::ffi::CStr">CStr</a></h4></section></summary><div class='docblock'>The resulting type after dereferencing.</div></details><details class="toggle method-toggle" open><summary><section id="method.deref" class="method trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/1.84.1/src/alloc/ffi/c_str.rs.html#714">Source</a><a href="#method.deref" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.84.1/core/ops/deref/trait.Deref.html#tymethod.deref" class="fn">deref</a>(&self) -> &<a class="struct" href="struct.CStr.html" title="struct rustix::ffi::CStr">CStr</a></h4></section></summary><div class='docblock'>Dereferences the value.</div></details></div></details><details class="toggle implementors-toggle" open><summary><section id="impl-Drop-for-CString" class="impl"><span class="rightside"><span class="since" title="Stable since Rust version 1.13.0">1.13.0</span> · <a class="src" href="https://doc.rust-lang.org/1.84.1/src/alloc/ffi/c_str.rs.html#700">Source</a></span><a href="#impl-Drop-for-CString" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="https://doc.rust-lang.org/1.84.1/core/ops/drop/trait.Drop.html" title="trait core::ops::drop::Drop">Drop</a> for <a class="struct" href="struct.CString.html" title="struct rustix::ffi::CString">CString</a></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.drop" class="method trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/1.84.1/src/alloc/ffi/c_str.rs.html#702">Source</a><a href="#method.drop" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.84.1/core/ops/drop/trait.Drop.html#tymethod.drop" class="fn">drop</a>(&mut self)</h4></section></summary><div class='docblock'>Executes the destructor for this type. <a href="https://doc.rust-lang.org/1.84.1/core/ops/drop/trait.Drop.html#tymethod.drop">Read more</a></div></details></div></details><details class="toggle implementors-toggle" open><summary><section id="impl-From%3C%26CStr%3E-for-CString" class="impl"><span class="rightside"><span class="since" title="Stable since Rust version 1.7.0">1.7.0</span> · <a class="src" href="https://doc.rust-lang.org/1.84.1/src/alloc/ffi/c_str.rs.html#1095">Source</a></span><a href="#impl-From%3C%26CStr%3E-for-CString" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="https://doc.rust-lang.org/1.84.1/core/convert/trait.From.html" title="trait core::convert::From">From</a><&<a class="struct" href="struct.CStr.html" title="struct rustix::ffi::CStr">CStr</a>> for <a class="struct" href="struct.CString.html" title="struct rustix::ffi::CString">CString</a></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.from-3" class="method trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/1.84.1/src/alloc/ffi/c_str.rs.html#1098">Source</a><a href="#method.from-3" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.84.1/core/convert/trait.From.html#tymethod.from" class="fn">from</a>(s: &<a class="struct" href="struct.CStr.html" title="struct rustix::ffi::CStr">CStr</a>) -> <a class="struct" href="struct.CString.html" title="struct rustix::ffi::CString">CString</a></h4></section></summary><div class="docblock"><p>Converts a <code>&<a href="struct.CStr.html" title="struct rustix::ffi::CStr">CStr</a></code> into a <a href="struct.CString.html" title="struct rustix::ffi::CString"><code>CString</code></a>
|
||
by copying the contents into a new allocation.</p>
|
||
</div></details></div></details><details class="toggle implementors-toggle" open><summary><section id="impl-From%3CBox%3CCStr%3E%3E-for-CString" class="impl"><span class="rightside"><span class="since" title="Stable since Rust version 1.18.0">1.18.0</span> · <a class="src" href="https://doc.rust-lang.org/1.84.1/src/alloc/ffi/c_str.rs.html#799">Source</a></span><a href="#impl-From%3CBox%3CCStr%3E%3E-for-CString" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="https://doc.rust-lang.org/1.84.1/core/convert/trait.From.html" title="trait core::convert::From">From</a><<a class="struct" href="https://doc.rust-lang.org/1.84.1/alloc/boxed/struct.Box.html" title="struct alloc::boxed::Box">Box</a><<a class="struct" href="struct.CStr.html" title="struct rustix::ffi::CStr">CStr</a>>> for <a class="struct" href="struct.CString.html" title="struct rustix::ffi::CString">CString</a></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.from-1" class="method trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/1.84.1/src/alloc/ffi/c_str.rs.html#802">Source</a><a href="#method.from-1" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.84.1/core/convert/trait.From.html#tymethod.from" class="fn">from</a>(s: <a class="struct" href="https://doc.rust-lang.org/1.84.1/alloc/boxed/struct.Box.html" title="struct alloc::boxed::Box">Box</a><<a class="struct" href="struct.CStr.html" title="struct rustix::ffi::CStr">CStr</a>>) -> <a class="struct" href="struct.CString.html" title="struct rustix::ffi::CString">CString</a></h4></section></summary><div class="docblock"><p>Converts a <code><a href="https://doc.rust-lang.org/1.84.1/alloc/boxed/struct.Box.html" title="struct alloc::boxed::Box">Box</a><<a href="struct.CStr.html" title="struct rustix::ffi::CStr">CStr</a>></code> into a <a href="struct.CString.html" title="struct rustix::ffi::CString"><code>CString</code></a> without copying or allocating.</p>
|
||
</div></details></div></details><details class="toggle implementors-toggle" open><summary><section id="impl-From%3CCow%3C'a,+CStr%3E%3E-for-CString" class="impl"><span class="rightside"><span class="since" title="Stable since Rust version 1.28.0">1.28.0</span> · <a class="src" href="https://doc.rust-lang.org/1.84.1/src/alloc/ffi/c_str.rs.html#755">Source</a></span><a href="#impl-From%3CCow%3C'a,+CStr%3E%3E-for-CString" class="anchor">§</a><h3 class="code-header">impl<'a> <a class="trait" href="https://doc.rust-lang.org/1.84.1/core/convert/trait.From.html" title="trait core::convert::From">From</a><<a class="enum" href="https://doc.rust-lang.org/1.84.1/alloc/borrow/enum.Cow.html" title="enum alloc::borrow::Cow">Cow</a><'a, <a class="struct" href="struct.CStr.html" title="struct rustix::ffi::CStr">CStr</a>>> for <a class="struct" href="struct.CString.html" title="struct rustix::ffi::CString">CString</a></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.from" class="method trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/1.84.1/src/alloc/ffi/c_str.rs.html#759">Source</a><a href="#method.from" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.84.1/core/convert/trait.From.html#tymethod.from" class="fn">from</a>(s: <a class="enum" href="https://doc.rust-lang.org/1.84.1/alloc/borrow/enum.Cow.html" title="enum alloc::borrow::Cow">Cow</a><'a, <a class="struct" href="struct.CStr.html" title="struct rustix::ffi::CStr">CStr</a>>) -> <a class="struct" href="struct.CString.html" title="struct rustix::ffi::CString">CString</a></h4></section></summary><div class="docblock"><p>Converts a <code>Cow<'a, CStr></code> into a <code>CString</code>, by copying the contents if they are
|
||
borrowed.</p>
|
||
</div></details></div></details><details class="toggle implementors-toggle" open><summary><section id="impl-From%3CVec%3CNonZero%3Cu8%3E%3E%3E-for-CString" class="impl"><span class="rightside"><span class="since" title="Stable since Rust version 1.43.0">1.43.0</span> · <a class="src" href="https://doc.rust-lang.org/1.84.1/src/alloc/ffi/c_str.rs.html#809">Source</a></span><a href="#impl-From%3CVec%3CNonZero%3Cu8%3E%3E%3E-for-CString" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="https://doc.rust-lang.org/1.84.1/core/convert/trait.From.html" title="trait core::convert::From">From</a><<a class="struct" href="https://doc.rust-lang.org/1.84.1/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a><<a class="struct" href="https://doc.rust-lang.org/1.84.1/core/num/nonzero/struct.NonZero.html" title="struct core::num::nonzero::NonZero">NonZero</a><<a class="primitive" href="https://doc.rust-lang.org/1.84.1/std/primitive.u8.html">u8</a>>>> for <a class="struct" href="struct.CString.html" title="struct rustix::ffi::CString">CString</a></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.from-2" class="method trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/1.84.1/src/alloc/ffi/c_str.rs.html#813">Source</a><a href="#method.from-2" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.84.1/core/convert/trait.From.html#tymethod.from" class="fn">from</a>(v: <a class="struct" href="https://doc.rust-lang.org/1.84.1/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a><<a class="struct" href="https://doc.rust-lang.org/1.84.1/core/num/nonzero/struct.NonZero.html" title="struct core::num::nonzero::NonZero">NonZero</a><<a class="primitive" href="https://doc.rust-lang.org/1.84.1/std/primitive.u8.html">u8</a>>>) -> <a class="struct" href="struct.CString.html" title="struct rustix::ffi::CString">CString</a></h4></section></summary><div class="docblock"><p>Converts a <code><a href="https://doc.rust-lang.org/1.84.1/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a><<a href="https://doc.rust-lang.org/1.84.1/core/num/nonzero/struct.NonZero.html" title="struct core::num::nonzero::NonZero">NonZero</a><<a href="https://doc.rust-lang.org/1.84.1/std/primitive.u8.html" title="primitive u8">u8</a>>></code> into a <a href="struct.CString.html" title="struct rustix::ffi::CString"><code>CString</code></a> without
|
||
copying nor checking for inner nul bytes.</p>
|
||
</div></details></div></details><details class="toggle implementors-toggle" open><summary><section id="impl-FromStr-for-CString" class="impl"><a class="src rightside" href="https://doc.rust-lang.org/1.84.1/src/alloc/ffi/c_str.rs.html#830">Source</a><a href="#impl-FromStr-for-CString" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="https://doc.rust-lang.org/1.84.1/core/str/traits/trait.FromStr.html" title="trait core::str::traits::FromStr">FromStr</a> for <a class="struct" href="struct.CString.html" title="struct rustix::ffi::CString">CString</a></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.from_str" class="method trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/1.84.1/src/alloc/ffi/c_str.rs.html#837">Source</a><a href="#method.from_str" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.84.1/core/str/traits/trait.FromStr.html#tymethod.from_str" class="fn">from_str</a>(s: &<a class="primitive" href="https://doc.rust-lang.org/1.84.1/std/primitive.str.html">str</a>) -> <a class="enum" href="https://doc.rust-lang.org/1.84.1/core/result/enum.Result.html" title="enum core::result::Result">Result</a><<a class="struct" href="struct.CString.html" title="struct rustix::ffi::CString">CString</a>, <<a class="struct" href="struct.CString.html" title="struct rustix::ffi::CString">CString</a> as <a class="trait" href="https://doc.rust-lang.org/1.84.1/core/str/traits/trait.FromStr.html" title="trait core::str::traits::FromStr">FromStr</a>>::<a class="associatedtype" href="https://doc.rust-lang.org/1.84.1/core/str/traits/trait.FromStr.html#associatedtype.Err" title="type core::str::traits::FromStr::Err">Err</a>></h4></section></summary><div class="docblock"><p>Converts a string <code>s</code> into a <a href="struct.CString.html" title="struct rustix::ffi::CString"><code>CString</code></a>.</p>
|
||
<p>This method is equivalent to <a href="struct.CString.html#method.new" title="associated function rustix::ffi::CString::new"><code>CString::new</code></a>.</p>
|
||
</div></details><details class="toggle" open><summary><section id="associatedtype.Err" class="associatedtype trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/1.84.1/src/alloc/ffi/c_str.rs.html#831">Source</a><a href="#associatedtype.Err" class="anchor">§</a><h4 class="code-header">type <a href="https://doc.rust-lang.org/1.84.1/core/str/traits/trait.FromStr.html#associatedtype.Err" class="associatedtype">Err</a> = <a class="struct" href="struct.NulError.html" title="struct rustix::ffi::NulError">NulError</a></h4></section></summary><div class='docblock'>The associated error which can be returned from parsing.</div></details></div></details><details class="toggle implementors-toggle" open><summary><section id="impl-Hash-for-CString" class="impl"><span class="rightside"><span class="since" title="Stable since Rust version 1.64.0">1.64.0</span> · <a class="src" href="https://doc.rust-lang.org/1.84.1/src/alloc/ffi/c_str.rs.html#108">Source</a></span><a href="#impl-Hash-for-CString" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="https://doc.rust-lang.org/1.84.1/core/hash/trait.Hash.html" title="trait core::hash::Hash">Hash</a> for <a class="struct" href="struct.CString.html" title="struct rustix::ffi::CString">CString</a></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.hash" class="method trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/1.84.1/src/alloc/ffi/c_str.rs.html#108">Source</a><a href="#method.hash" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.84.1/core/hash/trait.Hash.html#tymethod.hash" class="fn">hash</a><__H>(&self, state: <a class="primitive" href="https://doc.rust-lang.org/1.84.1/std/primitive.reference.html">&mut __H</a>)<div class="where">where
|
||
__H: <a class="trait" href="https://doc.rust-lang.org/1.84.1/core/hash/trait.Hasher.html" title="trait core::hash::Hasher">Hasher</a>,</div></h4></section></summary><div class='docblock'>Feeds this value into the given <a href="https://doc.rust-lang.org/1.84.1/core/hash/trait.Hasher.html" title="trait core::hash::Hasher"><code>Hasher</code></a>. <a href="https://doc.rust-lang.org/1.84.1/core/hash/trait.Hash.html#tymethod.hash">Read more</a></div></details><details class="toggle method-toggle" open><summary><section id="method.hash_slice" class="method trait-impl"><span class="rightside"><span class="since" title="Stable since Rust version 1.3.0">1.3.0</span> · <a class="src" href="https://doc.rust-lang.org/1.84.1/src/core/hash/mod.rs.html#235-237">Source</a></span><a href="#method.hash_slice" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.84.1/core/hash/trait.Hash.html#method.hash_slice" class="fn">hash_slice</a><H>(data: &[Self], state: <a class="primitive" href="https://doc.rust-lang.org/1.84.1/std/primitive.reference.html">&mut H</a>)<div class="where">where
|
||
H: <a class="trait" href="https://doc.rust-lang.org/1.84.1/core/hash/trait.Hasher.html" title="trait core::hash::Hasher">Hasher</a>,
|
||
Self: <a class="trait" href="https://doc.rust-lang.org/1.84.1/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,</div></h4></section></summary><div class='docblock'>Feeds a slice of this type into the given <a href="https://doc.rust-lang.org/1.84.1/core/hash/trait.Hasher.html" title="trait core::hash::Hasher"><code>Hasher</code></a>. <a href="https://doc.rust-lang.org/1.84.1/core/hash/trait.Hash.html#method.hash_slice">Read more</a></div></details></div></details><details class="toggle implementors-toggle" open><summary><section id="impl-Index%3CRangeFull%3E-for-CString" class="impl"><span class="rightside"><span class="since" title="Stable since Rust version 1.7.0">1.7.0</span> · <a class="src" href="https://doc.rust-lang.org/1.84.1/src/alloc/ffi/c_str.rs.html#1104">Source</a></span><a href="#impl-Index%3CRangeFull%3E-for-CString" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="https://doc.rust-lang.org/1.84.1/core/ops/index/trait.Index.html" title="trait core::ops::index::Index">Index</a><<a class="struct" href="https://doc.rust-lang.org/1.84.1/core/ops/range/struct.RangeFull.html" title="struct core::ops::range::RangeFull">RangeFull</a>> for <a class="struct" href="struct.CString.html" title="struct rustix::ffi::CString">CString</a></h3></section></summary><div class="impl-items"><details class="toggle" open><summary><section id="associatedtype.Output" class="associatedtype trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/1.84.1/src/alloc/ffi/c_str.rs.html#1105">Source</a><a href="#associatedtype.Output" class="anchor">§</a><h4 class="code-header">type <a href="https://doc.rust-lang.org/1.84.1/core/ops/index/trait.Index.html#associatedtype.Output" class="associatedtype">Output</a> = <a class="struct" href="struct.CStr.html" title="struct rustix::ffi::CStr">CStr</a></h4></section></summary><div class='docblock'>The returned type after indexing.</div></details><details class="toggle method-toggle" open><summary><section id="method.index" class="method trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/1.84.1/src/alloc/ffi/c_str.rs.html#1108">Source</a><a href="#method.index" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.84.1/core/ops/index/trait.Index.html#tymethod.index" class="fn">index</a>(&self, _index: <a class="struct" href="https://doc.rust-lang.org/1.84.1/core/ops/range/struct.RangeFull.html" title="struct core::ops::range::RangeFull">RangeFull</a>) -> &<a class="struct" href="struct.CStr.html" title="struct rustix::ffi::CStr">CStr</a></h4></section></summary><div class='docblock'>Performs the indexing (<code>container[index]</code>) operation. <a href="https://doc.rust-lang.org/1.84.1/core/ops/index/trait.Index.html#tymethod.index">Read more</a></div></details></div></details><details class="toggle implementors-toggle" open><summary><section id="impl-Ord-for-CString" class="impl"><span class="rightside"><span class="since" title="Stable since Rust version 1.64.0">1.64.0</span> · <a class="src" href="https://doc.rust-lang.org/1.84.1/src/alloc/ffi/c_str.rs.html#108">Source</a></span><a href="#impl-Ord-for-CString" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="https://doc.rust-lang.org/1.84.1/core/cmp/trait.Ord.html" title="trait core::cmp::Ord">Ord</a> for <a class="struct" href="struct.CString.html" title="struct rustix::ffi::CString">CString</a></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.cmp" class="method trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/1.84.1/src/alloc/ffi/c_str.rs.html#108">Source</a><a href="#method.cmp" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.84.1/core/cmp/trait.Ord.html#tymethod.cmp" class="fn">cmp</a>(&self, other: &<a class="struct" href="struct.CString.html" title="struct rustix::ffi::CString">CString</a>) -> <a class="enum" href="https://doc.rust-lang.org/1.84.1/core/cmp/enum.Ordering.html" title="enum core::cmp::Ordering">Ordering</a></h4></section></summary><div class='docblock'>This method returns an <a href="https://doc.rust-lang.org/1.84.1/core/cmp/enum.Ordering.html" title="enum core::cmp::Ordering"><code>Ordering</code></a> between <code>self</code> and <code>other</code>. <a href="https://doc.rust-lang.org/1.84.1/core/cmp/trait.Ord.html#tymethod.cmp">Read more</a></div></details><details class="toggle method-toggle" open><summary><section id="method.max" class="method trait-impl"><span class="rightside"><span class="since" title="Stable since Rust version 1.21.0">1.21.0</span> · <a class="src" href="https://doc.rust-lang.org/1.84.1/src/core/cmp.rs.html#980-982">Source</a></span><a href="#method.max" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.84.1/core/cmp/trait.Ord.html#method.max" class="fn">max</a>(self, other: Self) -> Self<div class="where">where
|
||
Self: <a class="trait" href="https://doc.rust-lang.org/1.84.1/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,</div></h4></section></summary><div class='docblock'>Compares and returns the maximum of two values. <a href="https://doc.rust-lang.org/1.84.1/core/cmp/trait.Ord.html#method.max">Read more</a></div></details><details class="toggle method-toggle" open><summary><section id="method.min" class="method trait-impl"><span class="rightside"><span class="since" title="Stable since Rust version 1.21.0">1.21.0</span> · <a class="src" href="https://doc.rust-lang.org/1.84.1/src/core/cmp.rs.html#1001-1003">Source</a></span><a href="#method.min" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.84.1/core/cmp/trait.Ord.html#method.min" class="fn">min</a>(self, other: Self) -> Self<div class="where">where
|
||
Self: <a class="trait" href="https://doc.rust-lang.org/1.84.1/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,</div></h4></section></summary><div class='docblock'>Compares and returns the minimum of two values. <a href="https://doc.rust-lang.org/1.84.1/core/cmp/trait.Ord.html#method.min">Read more</a></div></details><details class="toggle method-toggle" open><summary><section id="method.clamp" class="method trait-impl"><span class="rightside"><span class="since" title="Stable since Rust version 1.50.0">1.50.0</span> · <a class="src" href="https://doc.rust-lang.org/1.84.1/src/core/cmp.rs.html#1027-1029">Source</a></span><a href="#method.clamp" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.84.1/core/cmp/trait.Ord.html#method.clamp" class="fn">clamp</a>(self, min: Self, max: Self) -> Self<div class="where">where
|
||
Self: <a class="trait" href="https://doc.rust-lang.org/1.84.1/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,</div></h4></section></summary><div class='docblock'>Restrict a value to a certain interval. <a href="https://doc.rust-lang.org/1.84.1/core/cmp/trait.Ord.html#method.clamp">Read more</a></div></details></div></details><details class="toggle implementors-toggle" open><summary><section id="impl-PartialEq-for-CString" class="impl"><span class="rightside"><span class="since" title="Stable since Rust version 1.64.0">1.64.0</span> · <a class="src" href="https://doc.rust-lang.org/1.84.1/src/alloc/ffi/c_str.rs.html#108">Source</a></span><a href="#impl-PartialEq-for-CString" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="https://doc.rust-lang.org/1.84.1/core/cmp/trait.PartialEq.html" title="trait core::cmp::PartialEq">PartialEq</a> for <a class="struct" href="struct.CString.html" title="struct rustix::ffi::CString">CString</a></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.eq" class="method trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/1.84.1/src/alloc/ffi/c_str.rs.html#108">Source</a><a href="#method.eq" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.84.1/core/cmp/trait.PartialEq.html#tymethod.eq" class="fn">eq</a>(&self, other: &<a class="struct" href="struct.CString.html" title="struct rustix::ffi::CString">CString</a>) -> <a class="primitive" href="https://doc.rust-lang.org/1.84.1/std/primitive.bool.html">bool</a></h4></section></summary><div class='docblock'>Tests for <code>self</code> and <code>other</code> values to be equal, and is used by <code>==</code>.</div></details><details class="toggle method-toggle" open><summary><section id="method.ne" class="method trait-impl"><span class="rightside"><span class="since" title="Stable since Rust version 1.0.0">1.0.0</span> · <a class="src" href="https://doc.rust-lang.org/1.84.1/src/core/cmp.rs.html#261">Source</a></span><a href="#method.ne" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.84.1/core/cmp/trait.PartialEq.html#method.ne" class="fn">ne</a>(&self, other: <a class="primitive" href="https://doc.rust-lang.org/1.84.1/std/primitive.reference.html">&Rhs</a>) -> <a class="primitive" href="https://doc.rust-lang.org/1.84.1/std/primitive.bool.html">bool</a></h4></section></summary><div class='docblock'>Tests for <code>!=</code>. The default implementation is almost always sufficient,
|
||
and should not be overridden without very good reason.</div></details></div></details><details class="toggle implementors-toggle" open><summary><section id="impl-PartialOrd-for-CString" class="impl"><span class="rightside"><span class="since" title="Stable since Rust version 1.64.0">1.64.0</span> · <a class="src" href="https://doc.rust-lang.org/1.84.1/src/alloc/ffi/c_str.rs.html#108">Source</a></span><a href="#impl-PartialOrd-for-CString" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="https://doc.rust-lang.org/1.84.1/core/cmp/trait.PartialOrd.html" title="trait core::cmp::PartialOrd">PartialOrd</a> for <a class="struct" href="struct.CString.html" title="struct rustix::ffi::CString">CString</a></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.partial_cmp" class="method trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/1.84.1/src/alloc/ffi/c_str.rs.html#108">Source</a><a href="#method.partial_cmp" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.84.1/core/cmp/trait.PartialOrd.html#tymethod.partial_cmp" class="fn">partial_cmp</a>(&self, other: &<a class="struct" href="struct.CString.html" title="struct rustix::ffi::CString">CString</a>) -> <a class="enum" href="https://doc.rust-lang.org/1.84.1/core/option/enum.Option.html" title="enum core::option::Option">Option</a><<a class="enum" href="https://doc.rust-lang.org/1.84.1/core/cmp/enum.Ordering.html" title="enum core::cmp::Ordering">Ordering</a>></h4></section></summary><div class='docblock'>This method returns an ordering between <code>self</code> and <code>other</code> values if one exists. <a href="https://doc.rust-lang.org/1.84.1/core/cmp/trait.PartialOrd.html#tymethod.partial_cmp">Read more</a></div></details><details class="toggle method-toggle" open><summary><section id="method.lt" class="method trait-impl"><span class="rightside"><span class="since" title="Stable since Rust version 1.0.0">1.0.0</span> · <a class="src" href="https://doc.rust-lang.org/1.84.1/src/core/cmp.rs.html#1335">Source</a></span><a href="#method.lt" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.84.1/core/cmp/trait.PartialOrd.html#method.lt" class="fn">lt</a>(&self, other: <a class="primitive" href="https://doc.rust-lang.org/1.84.1/std/primitive.reference.html">&Rhs</a>) -> <a class="primitive" href="https://doc.rust-lang.org/1.84.1/std/primitive.bool.html">bool</a></h4></section></summary><div class='docblock'>Tests less than (for <code>self</code> and <code>other</code>) and is used by the <code><</code> operator. <a href="https://doc.rust-lang.org/1.84.1/core/cmp/trait.PartialOrd.html#method.lt">Read more</a></div></details><details class="toggle method-toggle" open><summary><section id="method.le" class="method trait-impl"><span class="rightside"><span class="since" title="Stable since Rust version 1.0.0">1.0.0</span> · <a class="src" href="https://doc.rust-lang.org/1.84.1/src/core/cmp.rs.html#1353">Source</a></span><a href="#method.le" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.84.1/core/cmp/trait.PartialOrd.html#method.le" class="fn">le</a>(&self, other: <a class="primitive" href="https://doc.rust-lang.org/1.84.1/std/primitive.reference.html">&Rhs</a>) -> <a class="primitive" href="https://doc.rust-lang.org/1.84.1/std/primitive.bool.html">bool</a></h4></section></summary><div class='docblock'>Tests less than or equal to (for <code>self</code> and <code>other</code>) and is used by the
|
||
<code><=</code> operator. <a href="https://doc.rust-lang.org/1.84.1/core/cmp/trait.PartialOrd.html#method.le">Read more</a></div></details><details class="toggle method-toggle" open><summary><section id="method.gt" class="method trait-impl"><span class="rightside"><span class="since" title="Stable since Rust version 1.0.0">1.0.0</span> · <a class="src" href="https://doc.rust-lang.org/1.84.1/src/core/cmp.rs.html#1371">Source</a></span><a href="#method.gt" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.84.1/core/cmp/trait.PartialOrd.html#method.gt" class="fn">gt</a>(&self, other: <a class="primitive" href="https://doc.rust-lang.org/1.84.1/std/primitive.reference.html">&Rhs</a>) -> <a class="primitive" href="https://doc.rust-lang.org/1.84.1/std/primitive.bool.html">bool</a></h4></section></summary><div class='docblock'>Tests greater than (for <code>self</code> and <code>other</code>) and is used by the <code>></code>
|
||
operator. <a href="https://doc.rust-lang.org/1.84.1/core/cmp/trait.PartialOrd.html#method.gt">Read more</a></div></details><details class="toggle method-toggle" open><summary><section id="method.ge" class="method trait-impl"><span class="rightside"><span class="since" title="Stable since Rust version 1.0.0">1.0.0</span> · <a class="src" href="https://doc.rust-lang.org/1.84.1/src/core/cmp.rs.html#1389">Source</a></span><a href="#method.ge" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.84.1/core/cmp/trait.PartialOrd.html#method.ge" class="fn">ge</a>(&self, other: <a class="primitive" href="https://doc.rust-lang.org/1.84.1/std/primitive.reference.html">&Rhs</a>) -> <a class="primitive" href="https://doc.rust-lang.org/1.84.1/std/primitive.bool.html">bool</a></h4></section></summary><div class='docblock'>Tests greater than or equal to (for <code>self</code> and <code>other</code>) and is used by
|
||
the <code>>=</code> operator. <a href="https://doc.rust-lang.org/1.84.1/core/cmp/trait.PartialOrd.html#method.ge">Read more</a></div></details></div></details><section id="impl-Eq-for-CString" class="impl"><span class="rightside"><span class="since" title="Stable since Rust version 1.64.0">1.64.0</span> · <a class="src" href="https://doc.rust-lang.org/1.84.1/src/alloc/ffi/c_str.rs.html#108">Source</a></span><a href="#impl-Eq-for-CString" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="https://doc.rust-lang.org/1.84.1/core/cmp/trait.Eq.html" title="trait core::cmp::Eq">Eq</a> for <a class="struct" href="struct.CString.html" title="struct rustix::ffi::CString">CString</a></h3></section><section id="impl-StructuralPartialEq-for-CString" class="impl"><span class="rightside"><span class="since" title="Stable since Rust version 1.64.0">1.64.0</span> · <a class="src" href="https://doc.rust-lang.org/1.84.1/src/alloc/ffi/c_str.rs.html#108">Source</a></span><a href="#impl-StructuralPartialEq-for-CString" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="https://doc.rust-lang.org/1.84.1/core/marker/trait.StructuralPartialEq.html" title="trait core::marker::StructuralPartialEq">StructuralPartialEq</a> for <a class="struct" href="struct.CString.html" title="struct rustix::ffi::CString">CString</a></h3></section></div><h2 id="synthetic-implementations" class="section-header">Auto Trait Implementations<a href="#synthetic-implementations" class="anchor">§</a></h2><div id="synthetic-implementations-list"><section id="impl-Freeze-for-CString" class="impl"><a href="#impl-Freeze-for-CString" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="https://doc.rust-lang.org/1.84.1/core/marker/trait.Freeze.html" title="trait core::marker::Freeze">Freeze</a> for <a class="struct" href="struct.CString.html" title="struct rustix::ffi::CString">CString</a></h3></section><section id="impl-RefUnwindSafe-for-CString" class="impl"><a href="#impl-RefUnwindSafe-for-CString" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="https://doc.rust-lang.org/1.84.1/core/panic/unwind_safe/trait.RefUnwindSafe.html" title="trait core::panic::unwind_safe::RefUnwindSafe">RefUnwindSafe</a> for <a class="struct" href="struct.CString.html" title="struct rustix::ffi::CString">CString</a></h3></section><section id="impl-Send-for-CString" class="impl"><a href="#impl-Send-for-CString" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="https://doc.rust-lang.org/1.84.1/core/marker/trait.Send.html" title="trait core::marker::Send">Send</a> for <a class="struct" href="struct.CString.html" title="struct rustix::ffi::CString">CString</a></h3></section><section id="impl-Sync-for-CString" class="impl"><a href="#impl-Sync-for-CString" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="https://doc.rust-lang.org/1.84.1/core/marker/trait.Sync.html" title="trait core::marker::Sync">Sync</a> for <a class="struct" href="struct.CString.html" title="struct rustix::ffi::CString">CString</a></h3></section><section id="impl-Unpin-for-CString" class="impl"><a href="#impl-Unpin-for-CString" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="https://doc.rust-lang.org/1.84.1/core/marker/trait.Unpin.html" title="trait core::marker::Unpin">Unpin</a> for <a class="struct" href="struct.CString.html" title="struct rustix::ffi::CString">CString</a></h3></section><section id="impl-UnwindSafe-for-CString" class="impl"><a href="#impl-UnwindSafe-for-CString" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="https://doc.rust-lang.org/1.84.1/core/panic/unwind_safe/trait.UnwindSafe.html" title="trait core::panic::unwind_safe::UnwindSafe">UnwindSafe</a> for <a class="struct" href="struct.CString.html" title="struct rustix::ffi::CString">CString</a></h3></section></div><h2 id="blanket-implementations" class="section-header">Blanket Implementations<a href="#blanket-implementations" class="anchor">§</a></h2><div id="blanket-implementations-list"><details class="toggle implementors-toggle"><summary><section id="impl-Any-for-T" class="impl"><a class="src rightside" href="https://doc.rust-lang.org/1.84.1/src/core/any.rs.html#138">Source</a><a href="#impl-Any-for-T" class="anchor">§</a><h3 class="code-header">impl<T> <a class="trait" href="https://doc.rust-lang.org/1.84.1/core/any/trait.Any.html" title="trait core::any::Any">Any</a> for T<div class="where">where
|
||
T: 'static + ?<a class="trait" href="https://doc.rust-lang.org/1.84.1/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,</div></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.type_id" class="method trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/1.84.1/src/core/any.rs.html#139">Source</a><a href="#method.type_id" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.84.1/core/any/trait.Any.html#tymethod.type_id" class="fn">type_id</a>(&self) -> <a class="struct" href="https://doc.rust-lang.org/1.84.1/core/any/struct.TypeId.html" title="struct core::any::TypeId">TypeId</a></h4></section></summary><div class='docblock'>Gets the <code>TypeId</code> of <code>self</code>. <a href="https://doc.rust-lang.org/1.84.1/core/any/trait.Any.html#tymethod.type_id">Read more</a></div></details></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Borrow%3CT%3E-for-T" class="impl"><a class="src rightside" href="https://doc.rust-lang.org/1.84.1/src/core/borrow.rs.html#209">Source</a><a href="#impl-Borrow%3CT%3E-for-T" class="anchor">§</a><h3 class="code-header">impl<T> <a class="trait" href="https://doc.rust-lang.org/1.84.1/core/borrow/trait.Borrow.html" title="trait core::borrow::Borrow">Borrow</a><T> for T<div class="where">where
|
||
T: ?<a class="trait" href="https://doc.rust-lang.org/1.84.1/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,</div></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.borrow-1" class="method trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/1.84.1/src/core/borrow.rs.html#211">Source</a><a href="#method.borrow-1" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.84.1/core/borrow/trait.Borrow.html#tymethod.borrow" class="fn">borrow</a>(&self) -> <a class="primitive" href="https://doc.rust-lang.org/1.84.1/std/primitive.reference.html">&T</a></h4></section></summary><div class='docblock'>Immutably borrows from an owned value. <a href="https://doc.rust-lang.org/1.84.1/core/borrow/trait.Borrow.html#tymethod.borrow">Read more</a></div></details></div></details><details class="toggle implementors-toggle"><summary><section id="impl-BorrowMut%3CT%3E-for-T" class="impl"><a class="src rightside" href="https://doc.rust-lang.org/1.84.1/src/core/borrow.rs.html#217">Source</a><a href="#impl-BorrowMut%3CT%3E-for-T" class="anchor">§</a><h3 class="code-header">impl<T> <a class="trait" href="https://doc.rust-lang.org/1.84.1/core/borrow/trait.BorrowMut.html" title="trait core::borrow::BorrowMut">BorrowMut</a><T> for T<div class="where">where
|
||
T: ?<a class="trait" href="https://doc.rust-lang.org/1.84.1/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,</div></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.borrow_mut" class="method trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/1.84.1/src/core/borrow.rs.html#218">Source</a><a href="#method.borrow_mut" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.84.1/core/borrow/trait.BorrowMut.html#tymethod.borrow_mut" class="fn">borrow_mut</a>(&mut self) -> <a class="primitive" href="https://doc.rust-lang.org/1.84.1/std/primitive.reference.html">&mut T</a></h4></section></summary><div class='docblock'>Mutably borrows from an owned value. <a href="https://doc.rust-lang.org/1.84.1/core/borrow/trait.BorrowMut.html#tymethod.borrow_mut">Read more</a></div></details></div></details><details class="toggle implementors-toggle"><summary><section id="impl-CloneToUninit-for-T" class="impl"><a class="src rightside" href="https://doc.rust-lang.org/1.84.1/src/core/clone.rs.html#273">Source</a><a href="#impl-CloneToUninit-for-T" class="anchor">§</a><h3 class="code-header">impl<T> <a class="trait" href="https://doc.rust-lang.org/1.84.1/core/clone/trait.CloneToUninit.html" title="trait core::clone::CloneToUninit">CloneToUninit</a> for T<div class="where">where
|
||
T: <a class="trait" href="https://doc.rust-lang.org/1.84.1/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a>,</div></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.clone_to_uninit" class="method trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/1.84.1/src/core/clone.rs.html#275">Source</a><a href="#method.clone_to_uninit" class="anchor">§</a><h4 class="code-header">unsafe fn <a href="https://doc.rust-lang.org/1.84.1/core/clone/trait.CloneToUninit.html#tymethod.clone_to_uninit" class="fn">clone_to_uninit</a>(&self, dst: <a class="primitive" href="https://doc.rust-lang.org/1.84.1/std/primitive.pointer.html">*mut </a><a class="primitive" href="https://doc.rust-lang.org/1.84.1/std/primitive.u8.html">u8</a>)</h4></section></summary><span class="item-info"><div class="stab unstable"><span class="emoji">🔬</span><span>This is a nightly-only experimental API. (<code>clone_to_uninit</code>)</span></div></span><div class='docblock'>Performs copy-assignment from <code>self</code> to <code>dst</code>. <a href="https://doc.rust-lang.org/1.84.1/core/clone/trait.CloneToUninit.html#tymethod.clone_to_uninit">Read more</a></div></details></div></details><details class="toggle implementors-toggle"><summary><section id="impl-From%3CT%3E-for-T" class="impl"><a class="src rightside" href="https://doc.rust-lang.org/1.84.1/src/core/convert/mod.rs.html#765">Source</a><a href="#impl-From%3CT%3E-for-T" class="anchor">§</a><h3 class="code-header">impl<T> <a class="trait" href="https://doc.rust-lang.org/1.84.1/core/convert/trait.From.html" title="trait core::convert::From">From</a><T> for T</h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.from-4" class="method trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/1.84.1/src/core/convert/mod.rs.html#768">Source</a><a href="#method.from-4" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.84.1/core/convert/trait.From.html#tymethod.from" class="fn">from</a>(t: T) -> T</h4></section></summary><div class="docblock"><p>Returns the argument unchanged.</p>
|
||
</div></details></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Into%3CU%3E-for-T" class="impl"><a class="src rightside" href="https://doc.rust-lang.org/1.84.1/src/core/convert/mod.rs.html#748-750">Source</a><a href="#impl-Into%3CU%3E-for-T" class="anchor">§</a><h3 class="code-header">impl<T, U> <a class="trait" href="https://doc.rust-lang.org/1.84.1/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a><U> for T<div class="where">where
|
||
U: <a class="trait" href="https://doc.rust-lang.org/1.84.1/core/convert/trait.From.html" title="trait core::convert::From">From</a><T>,</div></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.into" class="method trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/1.84.1/src/core/convert/mod.rs.html#758">Source</a><a href="#method.into" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.84.1/core/convert/trait.Into.html#tymethod.into" class="fn">into</a>(self) -> U</h4></section></summary><div class="docblock"><p>Calls <code>U::from(self)</code>.</p>
|
||
<p>That is, this conversion is whatever the implementation of
|
||
<code><a href="https://doc.rust-lang.org/1.84.1/core/convert/trait.From.html" title="trait core::convert::From">From</a><T> for U</code> chooses to do.</p>
|
||
</div></details></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Receiver-for-P" class="impl"><a class="src rightside" href="https://doc.rust-lang.org/1.84.1/src/core/ops/deref.rs.html#374-376">Source</a><a href="#impl-Receiver-for-P" class="anchor">§</a><h3 class="code-header">impl<P, T> <a class="trait" href="https://doc.rust-lang.org/1.84.1/core/ops/deref/trait.Receiver.html" title="trait core::ops::deref::Receiver">Receiver</a> for P<div class="where">where
|
||
P: <a class="trait" href="https://doc.rust-lang.org/1.84.1/core/ops/deref/trait.Deref.html" title="trait core::ops::deref::Deref">Deref</a><Target = T> + ?<a class="trait" href="https://doc.rust-lang.org/1.84.1/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,
|
||
T: ?<a class="trait" href="https://doc.rust-lang.org/1.84.1/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,</div></h3></section></summary><div class="impl-items"><details class="toggle" open><summary><section id="associatedtype.Target-1" class="associatedtype trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/1.84.1/src/core/ops/deref.rs.html#378">Source</a><a href="#associatedtype.Target-1" class="anchor">§</a><h4 class="code-header">type <a href="https://doc.rust-lang.org/1.84.1/core/ops/deref/trait.Receiver.html#associatedtype.Target" class="associatedtype">Target</a> = T</h4></section></summary><span class="item-info"><div class="stab unstable"><span class="emoji">🔬</span><span>This is a nightly-only experimental API. (<code>arbitrary_self_types</code>)</span></div></span><div class='docblock'>The target type on which the method may be called.</div></details></div></details><details class="toggle implementors-toggle"><summary><section id="impl-ToOwned-for-T" class="impl"><a class="src rightside" href="https://doc.rust-lang.org/1.84.1/src/alloc/borrow.rs.html#82-84">Source</a><a href="#impl-ToOwned-for-T" class="anchor">§</a><h3 class="code-header">impl<T> <a class="trait" href="https://doc.rust-lang.org/1.84.1/alloc/borrow/trait.ToOwned.html" title="trait alloc::borrow::ToOwned">ToOwned</a> for T<div class="where">where
|
||
T: <a class="trait" href="https://doc.rust-lang.org/1.84.1/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a>,</div></h3></section></summary><div class="impl-items"><details class="toggle" open><summary><section id="associatedtype.Owned" class="associatedtype trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/1.84.1/src/alloc/borrow.rs.html#86">Source</a><a href="#associatedtype.Owned" class="anchor">§</a><h4 class="code-header">type <a href="https://doc.rust-lang.org/1.84.1/alloc/borrow/trait.ToOwned.html#associatedtype.Owned" class="associatedtype">Owned</a> = T</h4></section></summary><div class='docblock'>The resulting type after obtaining ownership.</div></details><details class="toggle method-toggle" open><summary><section id="method.to_owned" class="method trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/1.84.1/src/alloc/borrow.rs.html#87">Source</a><a href="#method.to_owned" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.84.1/alloc/borrow/trait.ToOwned.html#tymethod.to_owned" class="fn">to_owned</a>(&self) -> T</h4></section></summary><div class='docblock'>Creates owned data from borrowed data, usually by cloning. <a href="https://doc.rust-lang.org/1.84.1/alloc/borrow/trait.ToOwned.html#tymethod.to_owned">Read more</a></div></details><details class="toggle method-toggle" open><summary><section id="method.clone_into" class="method trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/1.84.1/src/alloc/borrow.rs.html#91">Source</a><a href="#method.clone_into" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.84.1/alloc/borrow/trait.ToOwned.html#method.clone_into" class="fn">clone_into</a>(&self, target: <a class="primitive" href="https://doc.rust-lang.org/1.84.1/std/primitive.reference.html">&mut T</a>)</h4></section></summary><div class='docblock'>Uses borrowed data to replace owned data, usually by cloning. <a href="https://doc.rust-lang.org/1.84.1/alloc/borrow/trait.ToOwned.html#method.clone_into">Read more</a></div></details></div></details><details class="toggle implementors-toggle"><summary><section id="impl-TryFrom%3CU%3E-for-T" class="impl"><a class="src rightside" href="https://doc.rust-lang.org/1.84.1/src/core/convert/mod.rs.html#805-807">Source</a><a href="#impl-TryFrom%3CU%3E-for-T" class="anchor">§</a><h3 class="code-header">impl<T, U> <a class="trait" href="https://doc.rust-lang.org/1.84.1/core/convert/trait.TryFrom.html" title="trait core::convert::TryFrom">TryFrom</a><U> for T<div class="where">where
|
||
U: <a class="trait" href="https://doc.rust-lang.org/1.84.1/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a><T>,</div></h3></section></summary><div class="impl-items"><details class="toggle" open><summary><section id="associatedtype.Error-1" class="associatedtype trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/1.84.1/src/core/convert/mod.rs.html#809">Source</a><a href="#associatedtype.Error-1" class="anchor">§</a><h4 class="code-header">type <a href="https://doc.rust-lang.org/1.84.1/core/convert/trait.TryFrom.html#associatedtype.Error" class="associatedtype">Error</a> = <a class="enum" href="https://doc.rust-lang.org/1.84.1/core/convert/enum.Infallible.html" title="enum core::convert::Infallible">Infallible</a></h4></section></summary><div class='docblock'>The type returned in the event of a conversion error.</div></details><details class="toggle method-toggle" open><summary><section id="method.try_from" class="method trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/1.84.1/src/core/convert/mod.rs.html#812">Source</a><a href="#method.try_from" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.84.1/core/convert/trait.TryFrom.html#tymethod.try_from" class="fn">try_from</a>(value: U) -> <a class="enum" href="https://doc.rust-lang.org/1.84.1/core/result/enum.Result.html" title="enum core::result::Result">Result</a><T, <T as <a class="trait" href="https://doc.rust-lang.org/1.84.1/core/convert/trait.TryFrom.html" title="trait core::convert::TryFrom">TryFrom</a><U>>::<a class="associatedtype" href="https://doc.rust-lang.org/1.84.1/core/convert/trait.TryFrom.html#associatedtype.Error" title="type core::convert::TryFrom::Error">Error</a>></h4></section></summary><div class='docblock'>Performs the conversion.</div></details></div></details><details class="toggle implementors-toggle"><summary><section id="impl-TryInto%3CU%3E-for-T" class="impl"><a class="src rightside" href="https://doc.rust-lang.org/1.84.1/src/core/convert/mod.rs.html#790-792">Source</a><a href="#impl-TryInto%3CU%3E-for-T" class="anchor">§</a><h3 class="code-header">impl<T, U> <a class="trait" href="https://doc.rust-lang.org/1.84.1/core/convert/trait.TryInto.html" title="trait core::convert::TryInto">TryInto</a><U> for T<div class="where">where
|
||
U: <a class="trait" href="https://doc.rust-lang.org/1.84.1/core/convert/trait.TryFrom.html" title="trait core::convert::TryFrom">TryFrom</a><T>,</div></h3></section></summary><div class="impl-items"><details class="toggle" open><summary><section id="associatedtype.Error" class="associatedtype trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/1.84.1/src/core/convert/mod.rs.html#794">Source</a><a href="#associatedtype.Error" class="anchor">§</a><h4 class="code-header">type <a href="https://doc.rust-lang.org/1.84.1/core/convert/trait.TryInto.html#associatedtype.Error" class="associatedtype">Error</a> = <U as <a class="trait" href="https://doc.rust-lang.org/1.84.1/core/convert/trait.TryFrom.html" title="trait core::convert::TryFrom">TryFrom</a><T>>::<a class="associatedtype" href="https://doc.rust-lang.org/1.84.1/core/convert/trait.TryFrom.html#associatedtype.Error" title="type core::convert::TryFrom::Error">Error</a></h4></section></summary><div class='docblock'>The type returned in the event of a conversion error.</div></details><details class="toggle method-toggle" open><summary><section id="method.try_into" class="method trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/1.84.1/src/core/convert/mod.rs.html#797">Source</a><a href="#method.try_into" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.84.1/core/convert/trait.TryInto.html#tymethod.try_into" class="fn">try_into</a>(self) -> <a class="enum" href="https://doc.rust-lang.org/1.84.1/core/result/enum.Result.html" title="enum core::result::Result">Result</a><U, <U as <a class="trait" href="https://doc.rust-lang.org/1.84.1/core/convert/trait.TryFrom.html" title="trait core::convert::TryFrom">TryFrom</a><T>>::<a class="associatedtype" href="https://doc.rust-lang.org/1.84.1/core/convert/trait.TryFrom.html#associatedtype.Error" title="type core::convert::TryFrom::Error">Error</a>></h4></section></summary><div class='docblock'>Performs the conversion.</div></details></div></details></div><script type="text/json" id="notable-traits-data">{"&[u8]":"<h3>Notable traits for <code>&[<a class=\"primitive\" href=\"https://doc.rust-lang.org/1.84.1/std/primitive.u8.html\">u8</a>]</code></h3><pre><code><div class=\"where\">impl <a class=\"trait\" href=\"https://doc.rust-lang.org/1.84.1/std/io/trait.Read.html\" title=\"trait std::io::Read\">Read</a> for &[<a class=\"primitive\" href=\"https://doc.rust-lang.org/1.84.1/std/primitive.u8.html\">u8</a>]</div>"}</script></section></div></main></body></html> |