kanidm/docs/v1.1.0-alpha/rustdoc/kanidm_client/struct.StatusCode.html

195 lines
132 KiB
HTML
Raw Normal View History

<!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="An HTTP status code (`status-code` in RFC 7230 et al.)."><meta name="keywords" content="rust, rustlang, rust-lang, StatusCode"><title>StatusCode in kanidm_client - Rust</title><link rel="preload" as="font" type="font/woff2" crossorigin href="../static.files/SourceSerif4-Regular-1f7d512b176f0f72.ttf.woff2"><link rel="preload" as="font" type="font/woff2" crossorigin href="../static.files/FiraSans-Regular-018c141bf0843ffd.woff2"><link rel="preload" as="font" type="font/woff2" crossorigin href="../static.files/FiraSans-Medium-8f9a781e4970d388.woff2"><link rel="preload" as="font" type="font/woff2" crossorigin href="../static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2"><link rel="preload" as="font" type="font/woff2" crossorigin href="../static.files/SourceSerif4-Bold-124a1ca42af929b6.ttf.woff2"><link rel="preload" as="font" type="font/woff2" crossorigin href="../static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2"><link rel="stylesheet" href="../static.files/normalize-76eba96aa4d2e634.css"><link rel="stylesheet" href="../static.files/rustdoc-93196c7a1c3542a8.css" id="mainThemeStyle"><link rel="stylesheet" id="themeStyle" href="../static.files/light-4743e13df3dfe8c4.css"><link rel="stylesheet" disabled href="../static.files/dark-0e1b889528bd466b.css"><link rel="stylesheet" disabled href="../static.files/ayu-65289d5d067c7c66.css"><script id="default-settings" ></script><script src="../static.files/storage-d43fa987303ecbbb.js"></script><script defer src="sidebar-items.js"></script><script defer src="../static.files/main-3367e395607fafc1.js"></script><noscript><link rel="stylesheet" href="../static.files/noscript-13285aec31fa243e.css"></noscript><link rel="alternate icon" type="image/png" href="../static.files/favicon-16x16-8b506e7a72182f1c.png"><link rel="alternate icon" type="image/png" href="../static.files/favicon-32x32-422f7d1d52889060.png"><link rel="icon" type="image/svg+xml" href="../static.files/favicon-2c020d218678b618.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">&#9776;</button><a class="logo-container" href="../kanidm_client/index.html"><img class="rust-logo" src="../static.files/rust-logo-151179464ae7ed46.svg" alt="logo"></a><h2></h2></nav><nav class="sidebar"><a class="logo-container" href="../kanidm_client/index.html"><img class="rust-logo" src="../static.files/rust-logo-151179464ae7ed46.svg" alt="logo"></a><h2 class="location"><a href="#">StatusCode</a></h2><div class="sidebar-elems"><section><h3><a href="#implementations">Associated Constants</a></h3><ul class="block"><li><a href="#associatedconstant.ACCEPTED">ACCEPTED</a></li><li><a href="#associatedconstant.ALREADY_REPORTED">ALREADY_REPORTED</a></li><li><a href="#associatedconstant.BAD_GATEWAY">BAD_GATEWAY</a></li><li><a href="#associatedconstant.BAD_REQUEST">BAD_REQUEST</a></li><li><a href="#associatedconstant.CONFLICT">CONFLICT</a></li><li><a href="#associatedconstant.CONTINUE">CONTINUE</a></li><li><a href="#associatedconstant.CREATED">CREATED</a></li><li><a href="#associatedconstant.EXPECTATION_FAILED">EXPECTATION_FAILED</a></li><li><a href="#associatedconstant.FAILED_DEPENDENCY">FAILED_DEPENDENCY</a></li><li><a href="#associatedconstant.FORBIDDEN">FORBIDDEN</a></li><li><a href="#associatedconstant.FOUND">FOUND</a></li><li><a href="#associatedconstant.GATEWAY_TIMEOUT">GATEWAY_TIMEOUT</a></li><li><a href="#associatedconstant.GONE">GONE</a></li><li><a href="#associatedconstant.HTTP_VERSION_NOT_SUPPORTED">HTTP_VERSION_NOT_SUPPORTED</a></li><li><a href="#associatedconstant.IM_A_TEAPOT">IM_A_TEAPOT</a></li><li><a href="#associatedconstant.IM_USED">IM_USED</a></li><li><a href="#associatedconstant.INSUFFICIENT_STORAGE">INSUFFICIENT_STORAGE</a></li><li><a
<p>Constants are provided for known status codes, including those in the IANA
<a href="https://www.iana.org/assignments/http-status-codes/http-status-codes.xhtml">HTTP Status Code Registry</a>.</p>
<p>Status code values in the range 100-999 (inclusive) are supported by this
type. Values in the range 100-599 are semantically classified by the most
significant digit. See <a href="struct.StatusCode.html#method.is_success" title="StatusCode::is_success"><code>StatusCode::is_success</code></a>, etc. Values above 599
are unclassified but allowed for legacy compatibility, though their use is
discouraged. Applications may interpret such values as protocol errors.</p>
<h2 id="examples"><a href="#examples">Examples</a></h2>
<div class="example-wrap"><pre class="rust rust-example-rendered"><code><span class="kw">use </span>http::StatusCode;
<span class="macro">assert_eq!</span>(StatusCode::from_u16(<span class="number">200</span>).unwrap(), StatusCode::OK);
<span class="macro">assert_eq!</span>(StatusCode::NOT_FOUND.as_u16(), <span class="number">404</span>);
<span class="macro">assert!</span>(StatusCode::OK.is_success());</code></pre></div>
</div></details><h2 id="implementations" class="small-section-header">Implementations<a href="#implementations" class="anchor">§</a></h2><div id="implementations-list"><details class="toggle implementors-toggle" open><summary><section id="impl-StatusCode" class="impl has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#55">source</a><a href="#impl-StatusCode" class="anchor">§</a><h3 class="code-header">impl <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.from_u16" class="method has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#73">source</a><h4 class="code-header">pub fn <a href="#method.from_u16" class="fn">from_u16</a>(src: <a class="primitive" href="https://doc.rust-lang.org/1.68.1/std/primitive.u16.html">u16</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/1.68.1/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a>, <a class="struct" href="https://docs.rs/http/0.2.8/http/status/struct.InvalidStatusCode.html" title="struct http::status::InvalidStatusCode">InvalidStatusCode</a>&gt;</h4></section></summary><div class="docblock"><p>Converts a u16 to a status code.</p>
<p>The function validates the correctness of the supplied u16. It must be
greater or equal to 100 and less than 1000.</p>
<h5 id="example"><a href="#example">Example</a></h5>
<div class="example-wrap"><pre class="rust rust-example-rendered"><code><span class="kw">use </span>http::StatusCode;
<span class="kw">let </span>ok = StatusCode::from_u16(<span class="number">200</span>).unwrap();
<span class="macro">assert_eq!</span>(ok, StatusCode::OK);
<span class="kw">let </span>err = StatusCode::from_u16(<span class="number">99</span>);
<span class="macro">assert!</span>(err.is_err());</code></pre></div>
</div></details><details class="toggle method-toggle" open><summary><section id="method.from_bytes" class="method has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#84">source</a><h4 class="code-header">pub fn <a href="#method.from_bytes" class="fn">from_bytes</a>(src: &amp;[<a class="primitive" href="https://doc.rust-lang.org/1.68.1/std/primitive.u8.html">u8</a>]) -&gt; <a class="enum" href="https://doc.rust-lang.org/1.68.1/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a>, <a class="struct" href="https://docs.rs/http/0.2.8/http/status/struct.InvalidStatusCode.html" title="struct http::status::InvalidStatusCode">InvalidStatusCode</a>&gt;</h4></section></summary><div class="docblock"><p>Converts a &amp;<a href="https://doc.rust-lang.org/1.68.1/std/primitive.u8.html" title="u8">u8</a> to a status code</p>
</div></details><details class="toggle method-toggle" open><summary><section id="method.as_u16" class="method has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#119">source</a><h4 class="code-header">pub fn <a href="#method.as_u16" class="fn">as_u16</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/1.68.1/std/primitive.u16.html">u16</a></h4></section></summary><div class="docblock"><p>Returns the <code>u16</code> corresponding to this <code>StatusCode</code>.</p>
<h5 id="note"><a href="#note">Note</a></h5>
<p>This is the same as the <code>From&lt;StatusCode&gt;</code> implementation, but
included as an inherent method because that implementation doesnt
appear in rustdocs, as well as a way to force the type instead of
relying on inference.</p>
<h5 id="example-1"><a href="#example-1">Example</a></h5>
<div class="example-wrap"><pre class="rust rust-example-rendered"><code><span class="kw">let </span>status = http::StatusCode::OK;
<span class="macro">assert_eq!</span>(status.as_u16(), <span class="number">200</span>);</code></pre></div>
</div></details><details class="toggle method-toggle" open><summary><section id="method.as_str" class="method has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#135">source</a><h4 class="code-header">pub fn <a href="#method.as_str" class="fn">as_str</a>(&amp;self) -&gt; &amp;<a class="primitive" href="https://doc.rust-lang.org/1.68.1/std/primitive.str.html">str</a></h4></section></summary><div class="docblock"><p>Returns a &amp;str representation of the <code>StatusCode</code></p>
<p>The return value only includes a numerical representation of the
status code. The canonical reason is not included.</p>
<h5 id="example-2"><a href="#example-2">Example</a></h5>
<div class="example-wrap"><pre class="rust rust-example-rendered"><code><span class="kw">let </span>status = http::StatusCode::OK;
<span class="macro">assert_eq!</span>(status.as_str(), <span class="string">&quot;200&quot;</span>);</code></pre></div>
</div></details><details class="toggle method-toggle" open><summary><section id="method.canonical_reason" class="method has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#167">source</a><h4 class="code-header">pub fn <a href="#method.canonical_reason" class="fn">canonical_reason</a>(&amp;self) -&gt; <a class="enum" href="https://doc.rust-lang.org/1.68.1/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;&amp;'static <a class="primitive" href="https://doc.rust-lang.org/1.68.1/std/primitive.str.html">str</a>&gt;</h4></section></summary><div class="docblock"><p>Get the standardised <code>reason-phrase</code> for this status code.</p>
<p>This is mostly here for servers writing responses, but could potentially have application
at other times.</p>
<p>The reason phrase is defined as being exclusively for human readers. You should avoid
deriving any meaning from it at all costs.</p>
<p>Bear in mind also that in HTTP/2.0 and HTTP/3.0 the reason phrase is abolished from
transmission, and so this canonical reason phrase really is the only reason phrase youll
find.</p>
<h5 id="example-3"><a href="#example-3">Example</a></h5>
<div class="example-wrap"><pre class="rust rust-example-rendered"><code><span class="kw">let </span>status = http::StatusCode::OK;
<span class="macro">assert_eq!</span>(status.canonical_reason(), <span class="prelude-val">Some</span>(<span class="string">&quot;OK&quot;</span>));</code></pre></div>
</div></details><details class="toggle method-toggle" open><summary><section id="method.is_informational" class="method has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#173">source</a><h4 class="code-header">pub fn <a href="#method.is_informational" class="fn">is_informational</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/1.68.1/std/primitive.bool.html">bool</a></h4></section></summary><div class="docblock"><p>Check if status is within 100-199.</p>
</div></details><details class="toggle method-toggle" open><summary><section id="method.is_success" class="method has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#179">source</a><h4 class="code-header">pub fn <a href="#method.is_success" class="fn">is_success</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/1.68.1/std/primitive.bool.html">bool</a></h4></section></summary><div class="docblock"><p>Check if status is within 200-299.</p>
</div></details><details class="toggle method-toggle" open><summary><section id="method.is_redirection" class="method has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#185">source</a><h4 class="code-header">pub fn <a href="#method.is_redirection" class="fn">is_redirection</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/1.68.1/std/primitive.bool.html">bool</a></h4></section></summary><div class="docblock"><p>Check if status is within 300-399.</p>
</div></details><details class="toggle method-toggle" open><summary><section id="method.is_client_error" class="method has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#191">source</a><h4 class="code-header">pub fn <a href="#method.is_client_error" class="fn">is_client_error</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/1.68.1/std/primitive.bool.html">bool</a></h4></section></summary><div class="docblock"><p>Check if status is within 400-499.</p>
</div></details><details class="toggle method-toggle" open><summary><section id="method.is_server_error" class="method has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#197">source</a><h4 class="code-header">pub fn <a href="#method.is_server_error" class="fn">is_server_error</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/1.68.1/std/primitive.bool.html">bool</a></h4></section></summary><div class="docblock"><p>Check if status is within 500-599.</p>
</div></details></div></details><details class="toggle implementors-toggle" open><summary><section id="impl-StatusCode-1" class="impl has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><a href="#impl-StatusCode-1" class="anchor">§</a><h3 class="code-header">impl <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a></h3></section></summary><div class="impl-items"><details class="toggle" open><summary><section id="associatedconstant.CONTINUE" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.CONTINUE" class="constant">CONTINUE</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(100) })</h4></section></summary><div class="docblock"><p>100 Continue
[<a href="https://tools.ietf.org/html/rfc7231#section-6.2.1">RFC7231, Section 6.2.1</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.SWITCHING_PROTOCOLS" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.SWITCHING_PROTOCOLS" class="constant">SWITCHING_PROTOCOLS</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(101) })</h4></section></summary><div class="docblock"><p>101 Switching Protocols
[<a href="https://tools.ietf.org/html/rfc7231#section-6.2.2">RFC7231, Section 6.2.2</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.PROCESSING" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.PROCESSING" class="constant">PROCESSING</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(102) })</h4></section></summary><div class="docblock"><p>102 Processing
[<a href="https://tools.ietf.org/html/rfc2518">RFC2518</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.OK" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.OK" class="constant">OK</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(200) })</h4></section></summary><div class="docblock"><p>200 OK
[<a href="https://tools.ietf.org/html/rfc7231#section-6.3.1">RFC7231, Section 6.3.1</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.CREATED" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.CREATED" class="constant">CREATED</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(201) })</h4></section></summary><div class="docblock"><p>201 Created
[<a href="https://tools.ietf.org/html/rfc7231#section-6.3.2">RFC7231, Section 6.3.2</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.ACCEPTED" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.ACCEPTED" class="constant">ACCEPTED</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(202) })</h4></section></summary><div class="docblock"><p>202 Accepted
[<a href="https://tools.ietf.org/html/rfc7231#section-6.3.3">RFC7231, Section 6.3.3</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.NON_AUTHORITATIVE_INFORMATION" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.NON_AUTHORITATIVE_INFORMATION" class="constant">NON_AUTHORITATIVE_INFORMATION</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(203) })</h4></section></summary><div class="docblock"><p>203 Non-Authoritative Information
[<a href="https://tools.ietf.org/html/rfc7231#section-6.3.4">RFC7231, Section 6.3.4</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.NO_CONTENT" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.NO_CONTENT" class="constant">NO_CONTENT</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(204) })</h4></section></summary><div class="docblock"><p>204 No Content
[<a href="https://tools.ietf.org/html/rfc7231#section-6.3.5">RFC7231, Section 6.3.5</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.RESET_CONTENT" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.RESET_CONTENT" class="constant">RESET_CONTENT</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(205) })</h4></section></summary><div class="docblock"><p>205 Reset Content
[<a href="https://tools.ietf.org/html/rfc7231#section-6.3.6">RFC7231, Section 6.3.6</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.PARTIAL_CONTENT" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.PARTIAL_CONTENT" class="constant">PARTIAL_CONTENT</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(206) })</h4></section></summary><div class="docblock"><p>206 Partial Content
[<a href="https://tools.ietf.org/html/rfc7233#section-4.1">RFC7233, Section 4.1</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.MULTI_STATUS" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.MULTI_STATUS" class="constant">MULTI_STATUS</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(207) })</h4></section></summary><div class="docblock"><p>207 Multi-Status
[<a href="https://tools.ietf.org/html/rfc4918">RFC4918</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.ALREADY_REPORTED" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.ALREADY_REPORTED" class="constant">ALREADY_REPORTED</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(208) })</h4></section></summary><div class="docblock"><p>208 Already Reported
[<a href="https://tools.ietf.org/html/rfc5842">RFC5842</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.IM_USED" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.IM_USED" class="constant">IM_USED</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(226) })</h4></section></summary><div class="docblock"><p>226 IM Used
[<a href="https://tools.ietf.org/html/rfc3229">RFC3229</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.MULTIPLE_CHOICES" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.MULTIPLE_CHOICES" class="constant">MULTIPLE_CHOICES</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(300) })</h4></section></summary><div class="docblock"><p>300 Multiple Choices
[<a href="https://tools.ietf.org/html/rfc7231#section-6.4.1">RFC7231, Section 6.4.1</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.MOVED_PERMANENTLY" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.MOVED_PERMANENTLY" class="constant">MOVED_PERMANENTLY</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(301) })</h4></section></summary><div class="docblock"><p>301 Moved Permanently
[<a href="https://tools.ietf.org/html/rfc7231#section-6.4.2">RFC7231, Section 6.4.2</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.FOUND" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.FOUND" class="constant">FOUND</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(302) })</h4></section></summary><div class="docblock"><p>302 Found
[<a href="https://tools.ietf.org/html/rfc7231#section-6.4.3">RFC7231, Section 6.4.3</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.SEE_OTHER" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.SEE_OTHER" class="constant">SEE_OTHER</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(303) })</h4></section></summary><div class="docblock"><p>303 See Other
[<a href="https://tools.ietf.org/html/rfc7231#section-6.4.4">RFC7231, Section 6.4.4</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.NOT_MODIFIED" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.NOT_MODIFIED" class="constant">NOT_MODIFIED</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(304) })</h4></section></summary><div class="docblock"><p>304 Not Modified
[<a href="https://tools.ietf.org/html/rfc7232#section-4.1">RFC7232, Section 4.1</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.USE_PROXY" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.USE_PROXY" class="constant">USE_PROXY</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(305) })</h4></section></summary><div class="docblock"><p>305 Use Proxy
[<a href="https://tools.ietf.org/html/rfc7231#section-6.4.5">RFC7231, Section 6.4.5</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.TEMPORARY_REDIRECT" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.TEMPORARY_REDIRECT" class="constant">TEMPORARY_REDIRECT</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(307) })</h4></section></summary><div class="docblock"><p>307 Temporary Redirect
[<a href="https://tools.ietf.org/html/rfc7231#section-6.4.7">RFC7231, Section 6.4.7</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.PERMANENT_REDIRECT" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.PERMANENT_REDIRECT" class="constant">PERMANENT_REDIRECT</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(308) })</h4></section></summary><div class="docblock"><p>308 Permanent Redirect
[<a href="https://tools.ietf.org/html/rfc7238">RFC7238</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.BAD_REQUEST" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.BAD_REQUEST" class="constant">BAD_REQUEST</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(400) })</h4></section></summary><div class="docblock"><p>400 Bad Request
[<a href="https://tools.ietf.org/html/rfc7231#section-6.5.1">RFC7231, Section 6.5.1</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.UNAUTHORIZED" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.UNAUTHORIZED" class="constant">UNAUTHORIZED</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(401) })</h4></section></summary><div class="docblock"><p>401 Unauthorized
[<a href="https://tools.ietf.org/html/rfc7235#section-3.1">RFC7235, Section 3.1</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.PAYMENT_REQUIRED" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.PAYMENT_REQUIRED" class="constant">PAYMENT_REQUIRED</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(402) })</h4></section></summary><div class="docblock"><p>402 Payment Required
[<a href="https://tools.ietf.org/html/rfc7231#section-6.5.2">RFC7231, Section 6.5.2</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.FORBIDDEN" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.FORBIDDEN" class="constant">FORBIDDEN</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(403) })</h4></section></summary><div class="docblock"><p>403 Forbidden
[<a href="https://tools.ietf.org/html/rfc7231#section-6.5.3">RFC7231, Section 6.5.3</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.NOT_FOUND" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.NOT_FOUND" class="constant">NOT_FOUND</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(404) })</h4></section></summary><div class="docblock"><p>404 Not Found
[<a href="https://tools.ietf.org/html/rfc7231#section-6.5.4">RFC7231, Section 6.5.4</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.METHOD_NOT_ALLOWED" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.METHOD_NOT_ALLOWED" class="constant">METHOD_NOT_ALLOWED</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(405) })</h4></section></summary><div class="docblock"><p>405 Method Not Allowed
[<a href="https://tools.ietf.org/html/rfc7231#section-6.5.5">RFC7231, Section 6.5.5</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.NOT_ACCEPTABLE" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.NOT_ACCEPTABLE" class="constant">NOT_ACCEPTABLE</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(406) })</h4></section></summary><div class="docblock"><p>406 Not Acceptable
[<a href="https://tools.ietf.org/html/rfc7231#section-6.5.6">RFC7231, Section 6.5.6</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.PROXY_AUTHENTICATION_REQUIRED" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.PROXY_AUTHENTICATION_REQUIRED" class="constant">PROXY_AUTHENTICATION_REQUIRED</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(407) })</h4></section></summary><div class="docblock"><p>407 Proxy Authentication Required
[<a href="https://tools.ietf.org/html/rfc7235#section-3.2">RFC7235, Section 3.2</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.REQUEST_TIMEOUT" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.REQUEST_TIMEOUT" class="constant">REQUEST_TIMEOUT</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(408) })</h4></section></summary><div class="docblock"><p>408 Request Timeout
[<a href="https://tools.ietf.org/html/rfc7231#section-6.5.7">RFC7231, Section 6.5.7</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.CONFLICT" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.CONFLICT" class="constant">CONFLICT</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(409) })</h4></section></summary><div class="docblock"><p>409 Conflict
[<a href="https://tools.ietf.org/html/rfc7231#section-6.5.8">RFC7231, Section 6.5.8</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.GONE" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.GONE" class="constant">GONE</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(410) })</h4></section></summary><div class="docblock"><p>410 Gone
[<a href="https://tools.ietf.org/html/rfc7231#section-6.5.9">RFC7231, Section 6.5.9</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.LENGTH_REQUIRED" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.LENGTH_REQUIRED" class="constant">LENGTH_REQUIRED</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(411) })</h4></section></summary><div class="docblock"><p>411 Length Required
[<a href="https://tools.ietf.org/html/rfc7231#section-6.5.10">RFC7231, Section 6.5.10</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.PRECONDITION_FAILED" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.PRECONDITION_FAILED" class="constant">PRECONDITION_FAILED</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(412) })</h4></section></summary><div class="docblock"><p>412 Precondition Failed
[<a href="https://tools.ietf.org/html/rfc7232#section-4.2">RFC7232, Section 4.2</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.PAYLOAD_TOO_LARGE" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.PAYLOAD_TOO_LARGE" class="constant">PAYLOAD_TOO_LARGE</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(413) })</h4></section></summary><div class="docblock"><p>413 Payload Too Large
[<a href="https://tools.ietf.org/html/rfc7231#section-6.5.11">RFC7231, Section 6.5.11</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.URI_TOO_LONG" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.URI_TOO_LONG" class="constant">URI_TOO_LONG</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(414) })</h4></section></summary><div class="docblock"><p>414 URI Too Long
[<a href="https://tools.ietf.org/html/rfc7231#section-6.5.12">RFC7231, Section 6.5.12</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.UNSUPPORTED_MEDIA_TYPE" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.UNSUPPORTED_MEDIA_TYPE" class="constant">UNSUPPORTED_MEDIA_TYPE</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(415) })</h4></section></summary><div class="docblock"><p>415 Unsupported Media Type
[<a href="https://tools.ietf.org/html/rfc7231#section-6.5.13">RFC7231, Section 6.5.13</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.RANGE_NOT_SATISFIABLE" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.RANGE_NOT_SATISFIABLE" class="constant">RANGE_NOT_SATISFIABLE</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(416) })</h4></section></summary><div class="docblock"><p>416 Range Not Satisfiable
[<a href="https://tools.ietf.org/html/rfc7233#section-4.4">RFC7233, Section 4.4</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.EXPECTATION_FAILED" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.EXPECTATION_FAILED" class="constant">EXPECTATION_FAILED</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(417) })</h4></section></summary><div class="docblock"><p>417 Expectation Failed
[<a href="https://tools.ietf.org/html/rfc7231#section-6.5.14">RFC7231, Section 6.5.14</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.IM_A_TEAPOT" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.IM_A_TEAPOT" class="constant">IM_A_TEAPOT</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(418) })</h4></section></summary><div class="docblock"><p>418 Im a teapot
[curiously not registered by IANA but <a href="https://tools.ietf.org/html/rfc2324">RFC2324</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.MISDIRECTED_REQUEST" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.MISDIRECTED_REQUEST" class="constant">MISDIRECTED_REQUEST</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(421) })</h4></section></summary><div class="docblock"><p>421 Misdirected Request
<a href="http://tools.ietf.org/html/rfc7540#section-9.1.2">RFC7540, Section 9.1.2</a></p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.UNPROCESSABLE_ENTITY" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.UNPROCESSABLE_ENTITY" class="constant">UNPROCESSABLE_ENTITY</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(422) })</h4></section></summary><div class="docblock"><p>422 Unprocessable Entity
[<a href="https://tools.ietf.org/html/rfc4918">RFC4918</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.LOCKED" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.LOCKED" class="constant">LOCKED</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(423) })</h4></section></summary><div class="docblock"><p>423 Locked
[<a href="https://tools.ietf.org/html/rfc4918">RFC4918</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.FAILED_DEPENDENCY" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.FAILED_DEPENDENCY" class="constant">FAILED_DEPENDENCY</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(424) })</h4></section></summary><div class="docblock"><p>424 Failed Dependency
[<a href="https://tools.ietf.org/html/rfc4918">RFC4918</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.UPGRADE_REQUIRED" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.UPGRADE_REQUIRED" class="constant">UPGRADE_REQUIRED</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(426) })</h4></section></summary><div class="docblock"><p>426 Upgrade Required
[<a href="https://tools.ietf.org/html/rfc7231#section-6.5.15">RFC7231, Section 6.5.15</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.PRECONDITION_REQUIRED" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.PRECONDITION_REQUIRED" class="constant">PRECONDITION_REQUIRED</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(428) })</h4></section></summary><div class="docblock"><p>428 Precondition Required
[<a href="https://tools.ietf.org/html/rfc6585">RFC6585</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.TOO_MANY_REQUESTS" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.TOO_MANY_REQUESTS" class="constant">TOO_MANY_REQUESTS</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(429) })</h4></section></summary><div class="docblock"><p>429 Too Many Requests
[<a href="https://tools.ietf.org/html/rfc6585">RFC6585</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.REQUEST_HEADER_FIELDS_TOO_LARGE" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.REQUEST_HEADER_FIELDS_TOO_LARGE" class="constant">REQUEST_HEADER_FIELDS_TOO_LARGE</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(431) })</h4></section></summary><div class="docblock"><p>431 Request Header Fields Too Large
[<a href="https://tools.ietf.org/html/rfc6585">RFC6585</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.UNAVAILABLE_FOR_LEGAL_REASONS" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.UNAVAILABLE_FOR_LEGAL_REASONS" class="constant">UNAVAILABLE_FOR_LEGAL_REASONS</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(451) })</h4></section></summary><div class="docblock"><p>451 Unavailable For Legal Reasons
[<a href="http://tools.ietf.org/html/rfc7725">RFC7725</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.INTERNAL_SERVER_ERROR" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.INTERNAL_SERVER_ERROR" class="constant">INTERNAL_SERVER_ERROR</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(500) })</h4></section></summary><div class="docblock"><p>500 Internal Server Error
[<a href="https://tools.ietf.org/html/rfc7231#section-6.6.1">RFC7231, Section 6.6.1</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.NOT_IMPLEMENTED" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.NOT_IMPLEMENTED" class="constant">NOT_IMPLEMENTED</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(501) })</h4></section></summary><div class="docblock"><p>501 Not Implemented
[<a href="https://tools.ietf.org/html/rfc7231#section-6.6.2">RFC7231, Section 6.6.2</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.BAD_GATEWAY" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.BAD_GATEWAY" class="constant">BAD_GATEWAY</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(502) })</h4></section></summary><div class="docblock"><p>502 Bad Gateway
[<a href="https://tools.ietf.org/html/rfc7231#section-6.6.3">RFC7231, Section 6.6.3</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.SERVICE_UNAVAILABLE" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.SERVICE_UNAVAILABLE" class="constant">SERVICE_UNAVAILABLE</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(503) })</h4></section></summary><div class="docblock"><p>503 Service Unavailable
[<a href="https://tools.ietf.org/html/rfc7231#section-6.6.4">RFC7231, Section 6.6.4</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.GATEWAY_TIMEOUT" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.GATEWAY_TIMEOUT" class="constant">GATEWAY_TIMEOUT</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(504) })</h4></section></summary><div class="docblock"><p>504 Gateway Timeout
[<a href="https://tools.ietf.org/html/rfc7231#section-6.6.5">RFC7231, Section 6.6.5</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.HTTP_VERSION_NOT_SUPPORTED" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.HTTP_VERSION_NOT_SUPPORTED" class="constant">HTTP_VERSION_NOT_SUPPORTED</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(505) })</h4></section></summary><div class="docblock"><p>505 HTTP Version Not Supported
[<a href="https://tools.ietf.org/html/rfc7231#section-6.6.6">RFC7231, Section 6.6.6</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.VARIANT_ALSO_NEGOTIATES" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.VARIANT_ALSO_NEGOTIATES" class="constant">VARIANT_ALSO_NEGOTIATES</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(506) })</h4></section></summary><div class="docblock"><p>506 Variant Also Negotiates
[<a href="https://tools.ietf.org/html/rfc2295">RFC2295</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.INSUFFICIENT_STORAGE" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.INSUFFICIENT_STORAGE" class="constant">INSUFFICIENT_STORAGE</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(507) })</h4></section></summary><div class="docblock"><p>507 Insufficient Storage
[<a href="https://tools.ietf.org/html/rfc4918">RFC4918</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.LOOP_DETECTED" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.LOOP_DETECTED" class="constant">LOOP_DETECTED</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(508) })</h4></section></summary><div class="docblock"><p>508 Loop Detected
[<a href="https://tools.ietf.org/html/rfc5842">RFC5842</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.NOT_EXTENDED" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.NOT_EXTENDED" class="constant">NOT_EXTENDED</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(510) })</h4></section></summary><div class="docblock"><p>510 Not Extended
[<a href="https://tools.ietf.org/html/rfc2774">RFC2774</a>]</p>
</div></details><details class="toggle" open><summary><section id="associatedconstant.NETWORK_AUTHENTICATION_REQUIRED" class="associatedconstant has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#323-515">source</a><h4 class="code-header">pub const <a href="#associatedconstant.NETWORK_AUTHENTICATION_REQUIRED" class="constant">NETWORK_AUTHENTICATION_REQUIRED</a>: <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> = StatusCode(unsafe { NonZeroU16::new_unchecked(511) })</h4></section></summary><div class="docblock"><p>511 Network Authentication Required
[<a href="https://tools.ietf.org/html/rfc6585">RFC6585</a>]</p>
</div></details></div></details></div><h2 id="trait-implementations" class="small-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-Clone-for-StatusCode" class="impl has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#44">source</a><a href="#impl-Clone-for-StatusCode" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="https://doc.rust-lang.org/1.68.1/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> for <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.clone" class="method trait-impl has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#44">source</a><a href="#method.clone" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.68.1/core/clone/trait.Clone.html#tymethod.clone" class="fn">clone</a>(&amp;self) -&gt; <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a></h4></section></summary><div class='docblock'>Returns a copy of the value. <a href="https://doc.rust-lang.org/1.68.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 has-srclink"><span class="rightside"><span class="since" title="Stable since Rust version 1.0.0">1.0.0</span> · <a class="srclink" href="https://doc.rust-lang.org/1.68.1/src/core/clone.rs.html#132-134">source</a></span><a href="#method.clone_from" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.68.1/core/clone/trait.Clone.html#method.clone_from" class="fn">clone_from</a>(&amp;mut self, source: <a class="primitive" href="https://doc.rust-lang.org/1.68.1/std/primitive.reference.html">&amp;</a>Self)</h4></section></summary><div class='docblock'>Performs copy-assignment from <code>source</code>. <a href="https://doc.rust-lang.org/1.68.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-StatusCode" class="impl has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#202">source</a><a href="#impl-Debug-for-StatusCode" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="https://doc.rust-lang.org/1.68.1/core/fmt/trait.Debug.html" title="trait core::fmt::Debug">Debug</a> for <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.fmt" class="method trait-impl has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#203">source</a><a href="#method.fmt" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.68.1/core/fmt/trait.Debug.html#tymethod.fmt" class="fn">fmt</a>(&amp;self, f: &amp;mut <a class="struct" href="https://doc.rust-lang.org/1.68.1/core/fmt/struct.Formatter.html" title="struct core::fmt::Formatter">Formatter</a>&lt;'_&gt;) -&gt; <a class="enum" href="https://doc.rust-lang.org/1.68.1/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/1.68.1/std/primitive.unit.html">()</a>, <a class="struct" href="https://doc.rust-lang.org/1.68.1/core/fmt/struct.Error.html" title="struct core::fmt::Error">Error</a>&gt;</h4></section></summary><div class='docblock'>Formats the value using the given formatter. <a href="https://doc.rust-lang.org/1.68.1/core/fmt/trait.Debug.html#tymethod.fmt">Read more</a
<h4 id="example-4"><a href="#example-4">Example</a></h4>
<div class="example-wrap"><pre class="rust rust-example-rendered"><code><span class="macro">assert_eq!</span>(<span class="macro">format!</span>(<span class="string">&quot;{}&quot;</span>, StatusCode::OK), <span class="string">&quot;200 OK&quot;</span>);</code></pre></div>
</div><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.fmt-1" class="method trait-impl has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#217">source</a><a href="#method.fmt-1" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.68.1/core/fmt/trait.Display.html#tymethod.fmt" class="fn">fmt</a>(&amp;self, f: &amp;mut <a class="struct" href="https://doc.rust-lang.org/1.68.1/core/fmt/struct.Formatter.html" title="struct core::fmt::Formatter">Formatter</a>&lt;'_&gt;) -&gt; <a class="enum" href="https://doc.rust-lang.org/1.68.1/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/1.68.1/std/primitive.unit.html">()</a>, <a class="struct" href="https://doc.rust-lang.org/1.68.1/core/fmt/struct.Error.html" title="struct core::fmt::Error">Error</a>&gt;</h4></section></summary><div class='docblock'>Formats the value using the given formatter. <a href="https://doc.rust-lang.org/1.68.1/core/fmt/trait.Display.html#tymethod.fmt">Read more</a></div></details></div></details><details class="toggle implementors-toggle" open><summary><section id="impl-From%3C%26%27a%20StatusCode%3E-for-StatusCode" class="impl has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#263">source</a><a href="#impl-From%3C%26%27a%20StatusCode%3E-for-StatusCode" class="anchor">§</a><h3 class="code-header">impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/1.68.1/core/convert/trait.From.html" title="trait core::convert::From">From</a>&lt;&amp;'a <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a>&gt; for <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.from" class="method trait-impl has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#265">source</a><a href="#method.from" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.68.1/core/convert/trait.From.html#tymethod.from" class="fn">from</a>(t: &amp;'a <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a>) -&gt; <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a></h4></section></summary><div class='docblock'>Converts to this type from the input type.</div></details></div></details><details class="toggle implementors-toggle" open><summary><section id="impl-FromStr-for-StatusCode" class="impl has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#255">source</a><a href="#impl-FromStr-for-StatusCode" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="https://doc.rust-lang.org/1.68.1/core/str/traits/trait.FromStr.html" title="trait core::str::traits::FromStr">FromStr</a> for <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a></h3></section></summary><div class="impl-items"><details class="toggle" open><summary><section id="associatedtype.Err" class="associatedtype trait-impl has-srclink"><a href="#associatedtype.Err" class="anchor">§</a><h4 class="code-header">type <a href="https://doc.rust-lang.org/1.68.1/core/str/traits/trait.FromStr.html#associatedtype.Err" class="associatedtype">Err</a> = <a class="struct" href="https://docs.rs/http/0.2.8/http/status/struct.InvalidStatusCode.html" title="struct http::status::InvalidStatusCode">InvalidStatusCode</a></h4></section></summary><div class='docblock'>The associated error which can be returned from parsing.</div></details><details class="toggle method-toggle" open><summary><section id="method.from_str" class="method trait-impl has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0
by <code>==</code>.</div></details><details class="toggle method-toggle" open><summary><section id="method.ne-1" class="method trait-impl has-srclink"><span class="rightside"><span class="since" title="Stable since Rust version 1.0.0">1.0.0</span> · <a class="srclink" href="https://doc.rust-lang.org/1.68.1/src/core/cmp.rs.html#227">source</a></span><a href="#method.ne-1" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.68.1/core/cmp/trait.PartialEq.html#method.ne" class="fn">ne</a>(&amp;self, other: <a class="primitive" href="https://doc.rust-lang.org/1.68.1/std/primitive.reference.html">&amp;</a>Rhs) -&gt; <a class="primitive" href="https://doc.rust-lang.org/1.68.1/std/primitive.bool.html">bool</a></h4></section></summary><div class='docblock'>This method 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-PartialEq%3Cu16%3E-for-StatusCode" class="impl has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#234">source</a><a href="#impl-PartialEq%3Cu16%3E-for-StatusCode" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="https://doc.rust-lang.org/1.68.1/core/cmp/trait.PartialEq.html" title="trait core::cmp::PartialEq">PartialEq</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/1.68.1/std/primitive.u16.html">u16</a>&gt; for <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.eq" class="method trait-impl has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#236">source</a><a href="#method.eq" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.68.1/core/cmp/trait.PartialEq.html#tymethod.eq" class="fn">eq</a>(&amp;self, other: &amp;<a class="primitive" href="https://doc.rust-lang.org/1.68.1/std/primitive.u16.html">u16</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/1.68.1/std/primitive.bool.html">bool</a></h4></section></summary><div class='docblock'>This method 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 has-srclink"><span class="rightside"><span class="since" title="Stable since Rust version 1.0.0">1.0.0</span> · <a class="srclink" href="https://doc.rust-lang.org/1.68.1/src/core/cmp.rs.html#227">source</a></span><a href="#method.ne" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.68.1/core/cmp/trait.PartialEq.html#method.ne" class="fn">ne</a>(&amp;self, other: <a class="primitive" href="https://doc.rust-lang.org/1.68.1/std/primitive.reference.html">&amp;</a>Rhs) -&gt; <a class="primitive" href="https://doc.rust-lang.org/1.68.1/std/primitive.bool.html">bool</a></h4></section></summary><div class='docblock'>This method 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%3CStatusCode%3E-for-StatusCode" class="impl has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#44">source</a><a href="#impl-PartialOrd%3CStatusCode%3E-for-StatusCode" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="https://doc.rust-lang.org/1.68.1/core/cmp/trait.PartialOrd.html" title="trait core::cmp::PartialOrd">PartialOrd</a>&lt;<a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a>&gt; for <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.partial_cmp" class="method trait-impl has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#44">source</a><a href="#method.partial_cmp" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.68.1/core/cmp/trait.PartialOrd.html#tymethod.partial_cmp" class="fn">partial_cmp</a>(&amp;self, other: &amp;<a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a>) -&gt; <a class="enum" href="https://doc.rust-lang.org/1.68.1/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="enum" href="https://doc.rust-lang.org/1.68.1/core/cmp/enum.Ordering.html" title="enum core::cmp::Ordering">Ordering</a>&gt;</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.68.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 has-srclink"><span class="rightside"><span class="since" title="Stable since Rust version 1.0.0">1.0.0</span> · <a class="srclink" href="https://doc.rust-lang.org/1.68.1/src/core/cmp.rs.html#1096">source</a></span><a href="#method.lt" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.68.1/core/cmp/trait.PartialOrd.html#method.lt" class="fn">lt</a>(&amp;self, other: <a class="primitive" href="https://doc.rust-lang.org/1.68.1/std/primitive.reference.html">&amp;</a>Rhs) -&gt; <a class="primitive" href="https://doc.rust-lang.org/1.68.1/std/primitive.bool.html">bool</a></h4></section></summary><div class='docblock'>This method tests less than (for <code>self</code> and <code>other</code>) and is used by the <code>&lt;</code> operator. <a href="https://doc.rust-lang.org/1.68.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 has-srclink"><span class="rightside"><span class="since" title="Stable since Rust version 1.0.0">1.0.0</span> · <a class="srclink" href="https://doc.rust-lang.org/1.68.1/src/core/cmp.rs.html#1115">source</a></span><a href="#method.le" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.68.1/core/cmp/trait.PartialOrd.html#method.le" class="fn">le</a>(&amp;self, other: <a class="primitive" href="https://doc.rust-lang.org/1.68.1/std/primitive.reference.html">&amp;</a>Rhs) -&gt; <a class="primitive" href="https://doc.rust-lang.org/1.68.1/std/primitive.bool.html">bool</a></h4></section></summary><div class='docblock'>This method tests less than or equal to (for <code>self</code> and <code>other</code>) and is used by the <code>&lt;=</code>
operator. <a href="https://doc.rust-lang.org/1.68.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 has-srclink"><span class="rightside"><span class="since" title="Stable since Rust version 1.0.0">1.0.0</span> · <a class="srclink" href="https://doc.rust-lang.org/1.68.1/src/core/cmp.rs.html#1133">source</a></span><a href="#method.gt" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.68.1/core/cmp/trait.PartialOrd.html#method.gt" class="fn">gt</a>(&amp;self, other: <a class="primitive" href="https://doc.rust-lang.org/1.68.1/std/primitive.reference.html">&amp;</a>Rhs) -&gt; <a class="primitive" href="https://doc.rust-lang.org/1.68.1/std/primitive.bool.html">bool</a></h4></section></summary><div class='docblock'>This method tests greater than (for <code>self</code> and <code>other</code>) and is used by the <code>&gt;</code> operator. <a href="https://doc.rust-lang.org/1.68.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 has-srclink"><span class="rightside"><span class="since" title="Stable since Rust version 1.0.0">1.0.0</span> · <a class="srclink" href="https://doc.rust-lang.org/1.68.1/src/core/cmp.rs.html#1152">source</a></span><a href="#method.ge" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.68.1/core/cmp/trait.PartialOrd.html#method.ge" class="fn">ge</a>(&amp;self, other: <a class="primitive" href="https://doc.rust-lang.org/1.68.1/std/primitive.reference.html">&amp;</a>Rhs) -&gt; <a class="primitive" href="https://doc.rust-lang.org/1.68.1/std/primitive.bool.html">bool</a></h4></section></summary><div class='docblock'>This method tests greater than or equal to (for <code>self</code> and <code>other</code>) and is used by the <code>&gt;=</code>
operator. <a href="https://doc.rust-lang.org/1.68.1/core/cmp/trait.PartialOrd.html#method.ge">Read more</a></div></details></div></details><details class="toggle implementors-toggle" open><summary><section id="impl-TryFrom%3C%26%27a%20%5Bu8%5D%3E-for-StatusCode" class="impl has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#270">source</a><a href="#impl-TryFrom%3C%26%27a%20%5Bu8%5D%3E-for-StatusCode" class="anchor">§</a><h3 class="code-header">impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/1.68.1/core/convert/trait.TryFrom.html" title="trait core::convert::TryFrom">TryFrom</a>&lt;&amp;'a [<a class="primitive" href="https://doc.rust-lang.org/1.68.1/std/primitive.u8.html">u8</a>]&gt; for <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a></h3></section></summary><div class="impl-items"><details class="toggle" open><summary><section id="associatedtype.Error-2" class="associatedtype trait-impl has-srclink"><a href="#associatedtype.Error-2" class="anchor">§</a><h4 class="code-header">type <a href="https://doc.rust-lang.org/1.68.1/core/convert/trait.TryFrom.html#associatedtype.Error" class="associatedtype">Error</a> = <a class="struct" href="https://docs.rs/http/0.2.8/http/status/struct.InvalidStatusCode.html" title="struct http::status::InvalidStatusCode">InvalidStatusCode</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-2" class="method trait-impl has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#274">source</a><a href="#method.try_from-2" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.68.1/core/convert/trait.TryFrom.html#tymethod.try_from" class="fn">try_from</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;t: &amp;'a [<a class="primitive" href="https://doc.rust-lang.org/1.68.1/std/primitive.u8.html">u8</a>]<br>) -&gt; <a class="enum" href="https://doc.rust-lang.org/1.68.1/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;<a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a>, &lt;<a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a> as <a class="trait" href="https://doc.rust-lang.org/1.68.1/core/convert/trait.TryFrom.html" title="trait core::convert::TryFrom">TryFrom</a>&lt;&amp;'a [<a class="primitive" href="https://doc.rust-lang.org/1.68.1/std/primitive.u8.html">u8</a>]&gt;&gt;::<a class="associatedtype" href="https://doc.rust-lang.org/1.68.1/core/convert/trait.TryFrom.html#associatedtype.Error" title="type core::convert::TryFrom::Error">Error</a>&gt;</h4></section></summary><div class='docblock'>Performs the conversion.</div></details></div></details><details class="toggle implementors-toggle" open><summary><section id="impl-TryFrom%3C%26%27a%20str%3E-for-StatusCode" class="impl has-srclink"><a class="srclink rightside" href="https://docs.rs/http/0.2.8/src/http/status.rs.html#279">source</a><a href="#impl-TryFrom%3C%26%27a%20str%3E-for-StatusCode" class="anchor">§</a><h3 class="code-header">impl&lt;'a&gt; <a class="trait" href="https://doc.rust-lang.org/1.68.1/core/convert/trait.TryFrom.html" title="trait core::convert::TryFrom">TryFrom</a>&lt;&amp;'a <a class="primitive" href="https://doc.rust-lang.org/1.68.1/std/primitive.str.html">str</a>&gt; for <a class="struct" href="struct.StatusCode.html" title="struct kanidm_client::StatusCode">StatusCode</a></h3></section></summary><div class="impl-items"><details class="toggle" open><summary><section id="associatedtype.Error-1" class="associatedtype trait-impl has-srclink"><a href="#associatedtype.Error-1" class="anchor">§</a><h4 class="code-header">type <a href="https://doc.rust-lang.org/1.68.1/core/convert/trait.TryFrom.html#associatedtype.Error" class="associatedtype">Error</a> = <a class="struct" href="https://
</div></details></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Instrument-for-StatusCode" class="impl has-srclink"><a class="srclink rightside" href="https://docs.rs/tracing/0.1.37/src/tracing/instrument.rs.html#276">source</a><a href="#impl-Instrument-for-StatusCode" class="anchor">§</a><h3 class="code-header">impl&lt;T&gt; <a class="trait" href="https://docs.rs/tracing/0.1.37/tracing/instrument/trait.Instrument.html" title="trait tracing::instrument::Instrument">Instrument</a> for T</h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.instrument" class="method trait-impl has-srclink"><a class="srclink rightside" href="https://docs.rs/tracing/0.1.37/src/tracing/instrument.rs.html#82">source</a><a href="#method.instrument" class="anchor">§</a><h4 class="code-header">fn <a href="https://docs.rs/tracing/0.1.37/tracing/instrument/trait.Instrument.html#method.instrument" class="fn">instrument</a>(self, span: <a class="struct" href="https://docs.rs/tracing/0.1.37/tracing/span/struct.Span.html" title="struct tracing::span::Span">Span</a>) -&gt; <a class="struct" href="https://docs.rs/tracing/0.1.37/tracing/instrument/struct.Instrumented.html" title="struct tracing::instrument::Instrumented">Instrumented</a>&lt;Self&gt;</h4></section></summary><div class='docblock'>Instruments this type with the provided <a href="https://docs.rs/tracing/0.1.37/tracing/span/struct.Span.html" title="Span"><code>Span</code></a>, returning an
<code>Instrumented</code> wrapper. <a href="https://docs.rs/tracing/0.1.37/tracing/instrument/trait.Instrument.html#method.instrument">Read more</a></div></details><details class="toggle method-toggle" open><summary><section id="method.in_current_span" class="method trait-impl has-srclink"><a class="srclink rightside" href="https://docs.rs/tracing/0.1.37/src/tracing/instrument.rs.html#121">source</a><a href="#method.in_current_span" class="anchor">§</a><h4 class="code-header">fn <a href="https://docs.rs/tracing/0.1.37/tracing/instrument/trait.Instrument.html#method.in_current_span" class="fn">in_current_span</a>(self) -&gt; <a class="struct" href="https://docs.rs/tracing/0.1.37/tracing/instrument/struct.Instrumented.html" title="struct tracing::instrument::Instrumented">Instrumented</a>&lt;Self&gt;</h4></section></summary><div class='docblock'>Instruments this type with the <a href="https://docs.rs/tracing/0.1.37/tracing/span/struct.Span.html#method.current">current</a> <a href="https://docs.rs/tracing/0.1.37/tracing/span/struct.Span.html"><code>Span</code></a>, returning an
<code>Instrumented</code> wrapper. <a href="https://docs.rs/tracing/0.1.37/tracing/instrument/trait.Instrument.html#method.in_current_span">Read more</a></div></details></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Into%3CU%3E-for-StatusCode" class="impl has-srclink"><a class="srclink rightside" href="https://doc.rust-lang.org/1.68.1/src/core/convert/mod.rs.html#717">source</a><a href="#impl-Into%3CU%3E-for-StatusCode" class="anchor">§</a><h3 class="code-header">impl&lt;T, U&gt; <a class="trait" href="https://doc.rust-lang.org/1.68.1/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;U&gt; for T<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;U: <a class="trait" href="https://doc.rust-lang.org/1.68.1/core/convert/trait.From.html" title="trait core::convert::From">From</a>&lt;T&gt;,</span></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.into" class="method trait-impl has-srclink"><span class="rightside"><span class="since" title="const unstable">const: <a href="https://github.com/rust-lang/rust/issues/88674" title="Tracking issue for const_convert">unstable</a></span> · <a class="srclink" href="https://doc.rust-lang.org/1.68.1/src/core/convert/mod.rs.html#725">source</a></span><a href="#method.into" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.68.1/core/convert/trait.Into.html#tymethod.into" class="fn">into</a>(self) -&gt; 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.68.1/core/convert/trait.From.html" title="From">From</a>&lt;T&gt; for U</code> chooses to do.</p>
</div></details></div></details><details class="toggle implementors-toggle"><summary><section id="impl-ToOwned-for-StatusCode" class="impl has-srclink"><a class="srclink rightside" href="https://doc.rust-lang.org/1.68.1/src/alloc/borrow.rs.html#82">source</a><a href="#impl-ToOwned-for-StatusCode" class="anchor">§</a><h3 class="code-header">impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/1.68.1/alloc/borrow/trait.ToOwned.html" title="trait alloc::borrow::ToOwned">ToOwned</a> for T<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/1.68.1/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a>,</span></h3></section></summary><div class="impl-items"><details class="toggle" open><summary><section id="associatedtype.Owned" class="associatedtype trait-impl has-srclink"><a href="#associatedtype.Owned" class="anchor">§</a><h4 class="code-header">type <a href="https://doc.rust-lang.org/1.68.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 has-srclink"><a class="srclink rightside" href="https://doc.rust-lang.org/1.68.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.68.1/alloc/borrow/trait.ToOwned.html#tymethod.to_owned" class="fn">to_owned</a>(&amp;self) -&gt; T</h4></section></summary><div class='docblock'>Creates owned data from borrowed data, usually by cloning. <a href="https://doc.rust-lang.org/1.68.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 has-srclink"><a class="srclink rightside" href="https://doc.rust-lang.org/1.68.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.68.1/alloc/borrow/trait.ToOwned.html#method.clone_into" class="fn">clone_into</a>(&amp;self, target: <a class="primitive" href="https://doc.rust-lang.org/1.68.1/std/primitive.reference.html">&amp;mut </a>T)</h4></section></summary><div class='docblock'>Uses borrowed data to replace owned data, usually by cloning. <a href="https://doc.rust-lang.org/1.68.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-ToString-for-StatusCode" class="impl has-srclink"><a class="srclink rightside" href="https://doc.rust-lang.org/1.68.1/src/alloc/string.rs.html#2526">source</a><a href="#impl-ToString-for-StatusCode" class="anchor">§</a><h3 class="code-header">impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/1.68.1/alloc/string/trait.ToString.html" title="trait alloc::string::ToString">ToString</a> for T<span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/1.68.1/core/fmt/trait.Display.html" title="trait core::fmt::Display">Display</a> + ?<a class="trait" href="https://doc.rust-lang.org/1.68.1/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,</span></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.to_string" class="method trait-impl has-srclink"><a class="srclink rightside" href="https://doc.rust-lang.org/1.68.1/src/alloc/string.rs.html#2532">source</a><a href="#method.to_string" class="anchor">§</a><h4 class="code-header">default fn <a href="https://doc.rust-lang.org/1.68.1/alloc/string/trait.ToString.html#tymethod.to_string" class="fn">to_string</a>(&amp;self) -&gt; <a class="struct" href="https://doc.rust-lang.org/1.68.1/alloc/string/struct.String.html" title="struct alloc::string::String">S
<a href="https://docs.rs/tracing/0.1.37/tracing/instrument/struct.WithDispatch.html" title="WithDispatch"><code>WithDispatch</code></a> wrapper. <a href="https://docs.rs/tracing/0.1.37/tracing/instrument/trait.WithSubscriber.html#method.with_subscriber">Read more</a></div></details><details class="toggle method-toggle" open><summary><section id="method.with_current_subscriber" class="method trait-impl has-srclink"><a class="srclink rightside" href="https://docs.rs/tracing/0.1.37/src/tracing/instrument.rs.html#221">source</a><a href="#method.with_current_subscriber" class="anchor">§</a><h4 class="code-header">fn <a href="https://docs.rs/tracing/0.1.37/tracing/instrument/trait.WithSubscriber.html#method.with_current_subscriber" class="fn">with_current_subscriber</a>(self) -&gt; <a class="struct" href="https://docs.rs/tracing/0.1.37/tracing/instrument/struct.WithDispatch.html" title="struct tracing::instrument::WithDispatch">WithDispatch</a>&lt;Self&gt;</h4></section></summary><div class='docblock'>Attaches the current <a href="https://docs.rs/tracing/0.1.37/tracing/dispatcher/index.html#setting-the-default-subscriber">default</a> <a href="https://docs.rs/tracing-core/0.1.22/tracing_core/subscriber/trait.Subscriber.html"><code>Subscriber</code></a> to this type, returning a
<a href="https://docs.rs/tracing/0.1.37/tracing/instrument/struct.WithDispatch.html" title="WithDispatch"><code>WithDispatch</code></a> wrapper. <a href="https://docs.rs/tracing/0.1.37/tracing/instrument/trait.WithSubscriber.html#method.with_current_subscriber">Read more</a></div></details></div></details></div></section></div></main><div id="rustdoc-vars" data-root-path="../" data-static-root-path="../static.files/" data-current-crate="kanidm_client" data-themes="" data-resource-suffix="" data-rustdoc-version="1.68.1 (8460ca823 2023-03-20)" data-search-js="search-98d53477a794af0b.js" data-settings-js="settings-c3c521c753752a1a.js" data-settings-css="settings-08ddfdda51b8ee2e.css" ></div></body></html>