<p>Create a new random (V4) UUID and print it out in hexadecimal form:</p>
<divclass="example-wrap"><preclass="rust rust-example-rendered"><code><spanclass="comment">// Note that this requires the `v4` feature enabled in the uuid crate.</span>
<p>The <code>Uuid</code> type is always guaranteed to be have the same ABI as <ahref="https://docs.rs/uuid/1.2.1/uuid/type.Bytes.html"title="Bytes"><code>Bytes</code></a>.</p>
</div></details><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.from_fields_le"class="method has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/builder.rs.html#169">source</a></span><h4class="code-header">pub const fn <ahref="#method.from_fields_le"class="fnname">from_fields_le</a>(d1: <aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.u32.html">u32</a>, d2: <aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.u16.html">u16</a>, d3: <aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.u16.html">u16</a>, d4: &<aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.array.html">[</a><aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.u8.html">u8</a><aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.array.html">; 8]</a>) -><aclass="struct"href="struct.Uuid.html"title="struct kanidmd_lib::prelude::Uuid">Uuid</a></h4></section></summary><divclass="docblock"><p>Creates a UUID from four field values in little-endian order.</p>
</div></details><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.from_u128"class="method has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/builder.rs.html#207">source</a></span><h4class="code-header">pub const fn <ahref="#method.from_u128"class="fnname">from_u128</a>(v: <aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.u128.html">u128</a>) -><aclass="struct"href="struct.Uuid.html"title="struct kanidmd_lib::prelude::Uuid">Uuid</a></h4></section></summary><divclass="docblock"><p>Creates a UUID from a 128bit value.</p>
</div></details><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.from_u128_le"class="method has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/builder.rs.html#250">source</a></span><h4class="code-header">pub const fn <ahref="#method.from_u128_le"class="fnname">from_u128_le</a>(v: <aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.u128.html">u128</a>) -><aclass="struct"href="struct.Uuid.html"title="struct kanidmd_lib::prelude::Uuid">Uuid</a></h4></section></summary><divclass="docblock"><p>Creates a UUID from a 128bit value in little-endian order.</p>
</div></details><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.from_slice_le"class="method has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/builder.rs.html#380">source</a></span><h4class="code-header">pub fn <ahref="#method.from_slice_le"class="fnname">from_slice_le</a>(b: &[<aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.u8.html">u8</a>]) -><aclass="enum"href="https://doc.rust-lang.org/1.64.0/core/result/enum.Result.html"title="enum core::result::Result">Result</a><<aclass="struct"href="struct.Uuid.html"title="struct kanidmd_lib::prelude::Uuid">Uuid</a>, <aclass="struct"href="https://docs.rs/uuid/1.2.1/uuid/error/struct.Error.html"title="struct uuid::error::Error">Error</a>></h4></section></summary><divclass="docblock"><p>Creates a UUID using the supplied bytes in little endian order.</p>
</div></details><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.from_bytes_le"class="method has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/builder.rs.html#446">source</a></span><h4class="code-header">pub const fn <ahref="#method.from_bytes_le"class="fnname">from_bytes_le</a>(b: <aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.array.html">[</a><aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.u8.html">u8</a><aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.array.html">; 16]</a>) -><aclass="struct"href="struct.Uuid.html"title="struct kanidmd_lib::prelude::Uuid">Uuid</a></h4></section></summary><divclass="docblock"><p>Creates a UUID using the supplied bytes in little endian order.</p>
</div></details><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.from_bytes_ref"class="method has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/builder.rs.html#483">source</a></span><h4class="code-header">pub fn <ahref="#method.from_bytes_ref"class="fnname">from_bytes_ref</a>(bytes: &<aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.array.html">[</a><aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.u8.html">u8</a><aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.array.html">; 16]</a>) ->&<aclass="struct"href="struct.Uuid.html"title="struct kanidmd_lib::prelude::Uuid">Uuid</a></h4></section></summary><divclass="docblock"><p>Creates a reference to a UUID from a reference to the supplied bytes.</p>
</div></details><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.try_parse"class="method has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/parser.rs.html#98">source</a></span><h4class="code-header">pub const fn <ahref="#method.try_parse"class="fnname">try_parse</a>(input: &<aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.str.html">str</a>) -><aclass="enum"href="https://doc.rust-lang.org/1.64.0/core/result/enum.Result.html"title="enum core::result::Result">Result</a><<aclass="struct"href="struct.Uuid.html"title="struct kanidmd_lib::prelude::Uuid">Uuid</a>, <aclass="struct"href="https://docs.rs/uuid/1.2.1/uuid/error/struct.Error.html"title="struct uuid::error::Error">Error</a>></h4></section></summary><divclass="docblock"><p>Parses a <code>Uuid</code> from a string of hexadecimal digits with optional
</div></details><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.try_parse_ascii"class="method has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/parser.rs.html#125">source</a></span><h4class="code-header">pub const fn <ahref="#method.try_parse_ascii"class="fnname">try_parse_ascii</a>(input: &[<aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.u8.html">u8</a>]) -><aclass="enum"href="https://doc.rust-lang.org/1.64.0/core/result/enum.Result.html"title="enum core::result::Result">Result</a><<aclass="struct"href="struct.Uuid.html"title="struct kanidmd_lib::prelude::Uuid">Uuid</a>, <aclass="struct"href="https://docs.rs/uuid/1.2.1/uuid/error/struct.Error.html"title="struct uuid::error::Error">Error</a>></h4></section></summary><divclass="docblock"><p>Parses a <code>Uuid</code> from a string of hexadecimal digits with optional
</div></details><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.get_variant"class="method has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/lib.rs.html#487">source</a></span><h4class="code-header">pub const fn <ahref="#method.get_variant"class="fnname">get_variant</a>(&self) -><aclass="enum"href="https://docs.rs/uuid/1.2.1/uuid/enum.Variant.html"title="enum uuid::Variant">Variant</a></h4></section></summary><divclass="docblock"><p>Returns the variant of the UUID structure.</p>
</div></details><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.get_version_num"class="method has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/lib.rs.html#522">source</a></span><h4class="code-header">pub const fn <ahref="#method.get_version_num"class="fnname">get_version_num</a>(&self) -><aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.usize.html">usize</a></h4></section></summary><divclass="docblock"><p>Returns the version number of the UUID.</p>
<p>This represents the algorithm used to generate the value.
This method is the future-proof alternative to <ahref="struct.Uuid.html#method.get_version"title="Uuid::get_version"><code>Uuid::get_version</code></a>.</p>
</div></details><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.get_version"class="method has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/lib.rs.html#552">source</a></span><h4class="code-header">pub const fn <ahref="#method.get_version"class="fnname">get_version</a>(&self) -><aclass="enum"href="https://doc.rust-lang.org/1.64.0/core/option/enum.Option.html"title="enum core::option::Option">Option</a><<aclass="enum"href="https://docs.rs/uuid/1.2.1/uuid/enum.Version.html"title="enum uuid::Version">Version</a>></h4></section></summary><divclass="docblock"><p>Returns the version of the UUID.</p>
<p>This represents the algorithm used to generate the value.
If the version field doesn’t contain a recognized version then <code>None</code>
is returned. If you’re trying to read the version for a future extension
you can also use <ahref="struct.Uuid.html#method.get_version_num"title="Uuid::get_version_num"><code>Uuid::get_version_num</code></a> to unconditionally return a
number. Future extensions may start to return <code>Some</code> once they’re
</div></details><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.as_fields"class="method has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/lib.rs.html#615">source</a></span><h4class="code-header">pub fn <ahref="#method.as_fields"class="fnname">as_fields</a>(&self) -> (<aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.u32.html">u32</a>, <aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.u16.html">u16</a>, <aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.u16.html">u16</a>, &<aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.array.html">[</a><aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.u8.html">u8</a><aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.array.html">; 8]</a>)</h4></section></summary><divclass="docblock"><p>Returns the four field values of the UUID.</p>
<p>These values can be passed to the <ahref="struct.Uuid.html#method.from_fields"title="Uuid::from_fields"><code>Uuid::from_fields</code></a> method to get
the original <code>Uuid</code> back.</p>
<ul>
<li>The first field value represents the first group of (eight) hex
digits, taken as a big-endian <code>u32</code> value. For V1 UUIDs, this field
represents the low 32 bits of the timestamp.</li>
<li>The second field value represents the second group of (four) hex
digits, taken as a big-endian <code>u16</code> value. For V1 UUIDs, this field
represents the middle 16 bits of the timestamp.</li>
<li>The third field value represents the third group of (four) hex digits,
taken as a big-endian <code>u16</code> value. The 4 most significant bits give
the UUID version, and for V1 UUIDs, the last 12 bits represent the
high 12 bits of the timestamp.</li>
<li>The last field value represents the last two groups of four and twelve
hex digits, taken in order. The first 1-3 bits of this indicate the
UUID variant, and for V1 UUIDs, the next 13-15 bits indicate the clock
sequence and the last 48 bits indicate the node ID.</li>
</div></details><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.to_fields_le"class="method has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/lib.rs.html#658">source</a></span><h4class="code-header">pub fn <ahref="#method.to_fields_le"class="fnname">to_fields_le</a>(&self) -> (<aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.u32.html">u32</a>, <aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.u16.html">u16</a>, <aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.u16.html">u16</a>, &<aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.array.html">[</a><aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.u8.html">u8</a><aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.array.html">; 8]</a>)</h4></section></summary><divclass="docblock"><p>Returns the four field values of the UUID in little-endian order.</p>
</div></details><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.as_u128"class="method has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/lib.rs.html#690">source</a></span><h4class="code-header">pub const fn <ahref="#method.as_u128"class="fnname">as_u128</a>(&self) -><aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.u128.html">u128</a></h4></section></summary><divclass="docblock"><p>Returns a 128bit value containing the value.</p>
</div></details><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.to_u128_le"class="method has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/lib.rs.html#734">source</a></span><h4class="code-header">pub const fn <ahref="#method.to_u128_le"class="fnname">to_u128_le</a>(&self) -><aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.u128.html">u128</a></h4></section></summary><divclass="docblock"><p>Returns a 128bit little-endian value containing the value.</p>
<p>The bytes in the <code>u128</code> will be flipped to convert into big-endian
order. This is based on the endianness of the UUID, rather than the
target environment so bytes will be flipped on both big and little
endian machines.</p>
<p>Note that this will produce a different result than
<ahref="struct.Uuid.html#method.to_fields_le"title="Uuid::to_fields_le"><code>Uuid::to_fields_le</code></a>, because the entire UUID is reversed, rather
than reversing the individual fields in-place.</p>
</div></details><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.into_bytes"class="method has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/lib.rs.html#822">source</a></span><h4class="code-header">pub const fn <ahref="#method.into_bytes"class="fnname">into_bytes</a>(self) -><aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.array.html">[</a><aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.u8.html">u8</a><aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.array.html">; 16]</a></h4></section></summary><divclass="docblock"><p>Consumes self and returns the underlying byte value of the UUID.</p>
</div></details><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.to_bytes_le"class="method has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/lib.rs.html#850">source</a></span><h4class="code-header">pub const fn <ahref="#method.to_bytes_le"class="fnname">to_bytes_le</a>(&self) -><aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.array.html">[</a><aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.u8.html">u8</a><aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.array.html">; 16]</a></h4></section></summary><divclass="docblock"><p>Returns the bytes of the UUID in little-endian order.</p>
</div></details><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.is_nil"class="method has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/lib.rs.html#859">source</a></span><h4class="code-header">pub const fn <ahref="#method.is_nil"class="fnname">is_nil</a>(&self) -><aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.bool.html">bool</a></h4></section></summary><divclass="docblock"><p>Tests if the UUID is nil (all zeros).</p>
</div></details><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.encode_buffer"class="method has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/lib.rs.html#894">source</a></span><h4class="code-header">pub const fn <ahref="#method.encode_buffer"class="fnname">encode_buffer</a>() -><aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.array.html">[</a><aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.u8.html">u8</a><aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.array.html">; 45]</a></h4></section></summary><divclass="docblock"><p>A buffer that can be used for <code>encode_...</code> calls, that is
</div></details><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.get_timestamp"class="method has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/lib.rs.html#917">source</a></span><h4class="code-header">pub const fn <ahref="#method.get_timestamp"class="fnname">get_timestamp</a>(&self) -><aclass="enum"href="https://doc.rust-lang.org/1.64.0/core/option/enum.Option.html"title="enum core::option::Option">Option</a><<aclass="struct"href="https://docs.rs/uuid/1.2.1/uuid/timestamp/struct.Timestamp.html"title="struct uuid::timestamp::Timestamp">Timestamp</a>></h4></section></summary><divclass="docblock"><p>If the UUID is the correct version (v1, v6, or v7) this will return
the timestamp and counter portion parsed from a V1 UUID.</p>
<p>Returns <code>None</code> if the supplied UUID is not V1.</p>
<p>The V1 timestamp format defined in RFC4122 specifies a 60-bit
integer representing the number of 100-nanosecond intervals
since 00:00:00.00, 15 Oct 1582.</p>
<p><ahref="v1/struct.Timestamp.html"><code>Timestamp</code></a> offers several options for converting the raw RFC4122
value into more commonly-used formats, such as a unix timestamp.</p>
<p>This method is unlikely to roundtrip a timestamp in a UUID due to the way
UUIDs encode timestamps. The timestamp returned from this method will be truncated to
100ns precision for version 1 and 6 UUIDs, and to millisecond precision for version 7 UUIDs.</p>
</div></details></div></details></div><h2id="trait-implementations"class="small-section-header">Trait Implementations<ahref="#trait-implementations"class="anchor"></a></h2><divid="trait-implementations-list"><detailsclass="rustdoc-toggle implementors-toggle"open><summary><sectionid="impl-AsRef%3C%5Bu8%5D%3E-for-Uuid"class="impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/lib.rs.html#956">source</a></span><ahref="#impl-AsRef%3C%5Bu8%5D%3E-for-Uuid"class="anchor"></a><h3class="code-header in-band">impl <aclass="trait"href="https://doc.rust-lang.org/1.64.0/core/convert/trait.AsRef.html"title="trait core::convert::AsRef">AsRef</a><[<aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.u8.html">u8</a>]> for <aclass="struct"href="struct.Uuid.html"title="struct kanidmd_lib::prelude::Uuid">Uuid</a></h3></section></summary><divclass="impl-items"><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.as_ref"class="method trait-impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/lib.rs.html#958">source</a></span><ahref="#method.as_ref"class="anchor"></a><h4class="code-header">fn <ahref="https://doc.rust-lang.org/1.64.0/core/convert/trait.AsRef.html#tymethod.as_ref"class="fnname">as_ref</a>(&self) ->&[<aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.u8.html">u8</a>]<spanclass="notable-traits"><spanclass="notable-traits-tooltip">ⓘ<spanclass="notable-traits-tooltiptext"><spanclass="docblock"><spanclass="notable">Notable traits for &[<aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.u8.html">u8</a>]</span><codeclass="content"><spanclass="where fmt-newline">impl <aclass="trait"href="https://doc.rust-lang.org/1.64.0/std/io/trait.Read.html"title="trait std::io::Read">Read</a> for &[<aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.u8.html">u8</a>]</span><spanclass="where fmt-newline">impl <aclass="trait"href="https://doc.rust-lang.org/1.64.0/std/io/trait.Write.html"title="trait std::io::Write">Write</a> for &mut [<aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.u8.html">u8</a>]</span></code></span></span></span></span></h4></section></summary><divclass='docblock'><p>Converts this type into a shared reference of the (usually inferred) input type.</p>
</div></details></div></details><detailsclass="rustdoc-toggle implementors-toggle"open><summary><sectionid="impl-Clone-for-Uuid"class="impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/lib.rs.html#434">source</a></span><ahref="#impl-Clone-for-Uuid"class="anchor"></a><h3class="code-header in-band">impl <aclass="trait"href="https://doc.rust-lang.org/1.64.0/core/clone/trait.Clone.html"title="trait core::clone::Clone">Clone</a> for <aclass="struct"href="struct.Uuid.html"title="struct kanidmd_lib::prelude::Uuid">Uuid</a></h3></section></summary><divclass="impl-items"><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.clone"class="method trait-impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/lib.rs.html#434">source</a></span><ahref="#method.clone"class="anchor"></a><h4class="code-header">fn <ahref="https://doc.rust-lang.org/1.64.0/core/clone/trait.Clone.html#tymethod.clone"class="fnname">clone</a>(&self) -><aclass="struct"href="struct.Uuid.html"title="struct kanidmd_lib::prelude::Uuid">Uuid</a></h4></section></summary><divclass='docblock'><p>Returns a copy of the value. <ahref="https://doc.rust-lang.org/1.64.0/core/clone/trait.Clone.html#tymethod.clone">Read more</a></p>
</div></details></div></details><detailsclass="rustdoc-toggle implementors-toggle"open><summary><sectionid="impl-Debug-for-Uuid"class="impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/fmt.rs.html#19">source</a></span><ahref="#impl-Debug-for-Uuid"class="anchor"></a><h3class="code-header in-band">impl <aclass="trait"href="https://doc.rust-lang.org/1.64.0/core/fmt/trait.Debug.html"title="trait core::fmt::Debug">Debug</a> for <aclass="struct"href="struct.Uuid.html"title="struct kanidmd_lib::prelude::Uuid">Uuid</a></h3></section></summary><divclass="impl-items"><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.fmt-3"class="method trait-impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/fmt.rs.html#21">source</a></span><ahref="#method.fmt-3"class="anchor"></a><h4class="code-header">fn <ahref="https://doc.rust-lang.org/1.64.0/core/fmt/trait.Debug.html#tymethod.fmt"class="fnname">fmt</a>(&self, f: &mut <aclass="struct"href="https://doc.rust-lang.org/1.64.0/core/fmt/struct.Formatter.html"title="struct core::fmt::Formatter">Formatter</a><'_>) -><aclass="enum"href="https://doc.rust-lang.org/1.64.0/core/result/enum.Result.html"title="enum core::result::Result">Result</a><<aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.unit.html">()</a>, <aclass="struct"href="https://doc.rust-lang.org/1.64.0/core/fmt/struct.Error.html"title="struct core::fmt::Error">Error</a>></h4></section></summary><divclass='docblock'><p>Formats the value using the given formatter. <ahref="https://doc.rust-lang.org/1.64.0/core/fmt/trait.Debug.html#tymethod.fmt">Read more</a></p>
</div></details></div></details><detailsclass="rustdoc-toggle implementors-toggle"open><summary><sectionid="impl-Default-for-Uuid"class="impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/lib.rs.html#949">source</a></span><ahref="#impl-Default-for-Uuid"class="anchor"></a><h3class="code-header in-band">impl <aclass="trait"href="https://doc.rust-lang.org/1.64.0/core/default/trait.Default.html"title="trait core::default::Default">Default</a> for <aclass="struct"href="struct.Uuid.html"title="struct kanidmd_lib::prelude::Uuid">Uuid</a></h3></section></summary><divclass="impl-items"><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.default"class="method trait-impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/lib.rs.html#951">source</a></span><ahref="#method.default"class="anchor"></a><h4class="code-header">fn <ahref="https://doc.rust-lang.org/1.64.0/core/default/trait.Default.html#tymethod.default"class="fnname">default</a>() -><aclass="struct"href="struct.Uuid.html"title="struct kanidmd_lib::prelude::Uuid">Uuid</a></h4></section></summary><divclass='docblock'><p>Returns the “default value” for a type. <ahref="https://doc.rust-lang.org/1.64.0/core/default/trait.Default.html#tymethod.default">Read more</a></p>
</div></details></div></details><detailsclass="rustdoc-toggle implementors-toggle"open><summary><sectionid="impl-Deserialize%3C%27de%3E-for-Uuid"class="impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/external/serde_support.rs.html#57">source</a></span><ahref="#impl-Deserialize%3C%27de%3E-for-Uuid"class="anchor"></a><h3class="code-header in-band">impl<'de><aclass="trait"href="https://docs.rs/serde/1.0.145/serde/de/trait.Deserialize.html"title="trait serde::de::Deserialize">Deserialize</a><'de> for <aclass="struct"href="struct.Uuid.html"title="struct kanidmd_lib::prelude::Uuid">Uuid</a></h3></section></summary><divclass="impl-items"><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.deserialize"class="method trait-impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/external/serde_support.rs.html#58">source</a></span><ahref="#method.deserialize"class="anchor"></a><h4class="code-header">fn <ahref="https://docs.rs/serde/1.0.145/serde/de/trait.Deserialize.html#tymethod.deserialize"class="fnname">deserialize</a><D>(<br> deserializer: D<br>) -><aclass="enum"href="https://doc.rust-lang.org/1.64.0/core/result/enum.Result.html"title="enum core::result::Result">Result</a><<aclass="struct"href="struct.Uuid.html"title="struct kanidmd_lib::prelude::Uuid">Uuid</a>, <D as <aclass="trait"href="https://docs.rs/serde/1.0.145/serde/de/trait.Deserializer.html"title="trait serde::de::Deserializer">Deserializer</a><'de>>::<aclass="associatedtype"href="https://docs.rs/serde/1.0.145/serde/de/trait.Deserializer.html#associatedtype.Error"title="type serde::de::Deserializer::Error">Error</a>><spanclass="where fmt-newline">where<br> D: <aclass="trait"href="https://docs.rs/serde/1.0.145/serde/de/trait.Deserializer.html"title="trait serde::de::Deserializer">Deserializer</a><'de>, </span></h4></section></summary><divclass='docblock'><p>Deserialize this value from the given Serde deserializer. <ahref="https://docs.rs/serde/1.0.145/serde/de/trait.Deserialize.html#tymethod.deserialize">Read more</a></p>
</div></details></div></details><detailsclass="rustdoc-toggle implementors-toggle"open><summary><sectionid="impl-Display-for-Uuid"class="impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/fmt.rs.html#26">source</a></span><ahref="#impl-Display-for-Uuid"class="anchor"></a><h3class="code-header in-band">impl <aclass="trait"href="https://doc.rust-lang.org/1.64.0/core/fmt/trait.Display.html"title="trait core::fmt::Display">Display</a> for <aclass="struct"href="struct.Uuid.html"title="struct kanidmd_lib::prelude::Uuid">Uuid</a></h3></section></summary><divclass="impl-items"><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.fmt-2"class="method trait-impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/fmt.rs.html#27">source</a></span><ahref="#method.fmt-2"class="anchor"></a><h4class="code-header">fn <ahref="https://doc.rust-lang.org/1.64.0/core/fmt/trait.Display.html#tymethod.fmt"class="fnname">fmt</a>(&self, f: &mut <aclass="struct"href="https://doc.rust-lang.org/1.64.0/core/fmt/struct.Formatter.html"title="struct core::fmt::Formatter">Formatter</a><'_>) -><aclass="enum"href="https://doc.rust-lang.org/1.64.0/core/result/enum.Result.html"title="enum core::result::Result">Result</a><<aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.unit.html">()</a>, <aclass="struct"href="https://doc.rust-lang.org/1.64.0/core/fmt/struct.Error.html"title="struct core::fmt::Error">Error</a>></h4></section></summary><divclass='docblock'><p>Formats the value using the given formatter. <ahref="https://doc.rust-lang.org/1.64.0/core/fmt/trait.Display.html#tymethod.fmt">Read more</a></p>
</div></details></div></details><detailsclass="rustdoc-toggle implementors-toggle"open><summary><sectionid="impl-From%3CBraced%3E-for-Uuid"class="impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/fmt.rs.html#916-921">source</a></span><ahref="#impl-From%3CBraced%3E-for-Uuid"class="anchor"></a><h3class="code-header in-band">impl <aclass="trait"href="https://doc.rust-lang.org/1.64.0/core/convert/trait.From.html"title="trait core::convert::From">From</a><<aclass="struct"href="https://docs.rs/uuid/1.2.1/uuid/fmt/struct.Braced.html"title="struct uuid::fmt::Braced">Braced</a>> for <aclass="struct"href="struct.Uuid.html"title="struct kanidmd_lib::prelude::Uuid">Uuid</a></h3></section></summary><divclass="impl-items"><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.from"class="method trait-impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/fmt.rs.html#916-921">source</a></span><ahref="#method.from"class="anchor"></a><h4class="code-header">fn <ahref="https://doc.rust-lang.org/1.64.0/core/convert/trait.From.html#tymethod.from"class="fnname">from</a>(f: <aclass="struct"href="https://docs.rs/uuid/1.2.1/uuid/fmt/struct.Braced.html"title="struct uuid::fmt::Braced">Braced</a>) -><aclass="struct"href="struct.Uuid.html"title="struct kanidmd_lib::prelude::Uuid">Uuid</a></h4></section></summary><divclass='docblock'><p>Converts to this type from the input type.</p>
</div></details></div></details><detailsclass="rustdoc-toggle implementors-toggle"open><summary><sectionid="impl-From%3CHyphenated%3E-for-Uuid"class="impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/fmt.rs.html#916-921">source</a></span><ahref="#impl-From%3CHyphenated%3E-for-Uuid"class="anchor"></a><h3class="code-header in-band">impl <aclass="trait"href="https://doc.rust-lang.org/1.64.0/core/convert/trait.From.html"title="trait core::convert::From">From</a><<aclass="struct"href="https://docs.rs/uuid/1.2.1/uuid/fmt/struct.Hyphenated.html"title="struct uuid::fmt::Hyphenated">Hyphenated</a>> for <aclass="struct"href="struct.Uuid.html"title="struct kanidmd_lib::prelude::Uuid">Uuid</a></h3></section></summary><divclass="impl-items"><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.from-3"class="method trait-impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/fmt.rs.html#916-921">source</a></span><ahref="#method.from-3"class="anchor"></a><h4class="code-header">fn <ahref="https://doc.rust-lang.org/1.64.0/core/convert/trait.From.html#tymethod.from"class="fnname">from</a>(f: <aclass="struct"href="https://docs.rs/uuid/1.2.1/uuid/fmt/struct.Hyphenated.html"title="struct uuid::fmt::Hyphenated">Hyphenated</a>) -><aclass="struct"href="struct.Uuid.html"title="struct kanidmd_lib::prelude::Uuid">Uuid</a></h4></section></summary><divclass='docblock'><p>Converts to this type from the input type.</p>
</div></details></div></details><detailsclass="rustdoc-toggle implementors-toggle"open><summary><sectionid="impl-From%3CSimple%3E-for-Uuid"class="impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/fmt.rs.html#916-921">source</a></span><ahref="#impl-From%3CSimple%3E-for-Uuid"class="anchor"></a><h3class="code-header in-band">impl <aclass="trait"href="https://doc.rust-lang.org/1.64.0/core/convert/trait.From.html"title="trait core::convert::From">From</a><<aclass="struct"href="https://docs.rs/uuid/1.2.1/uuid/fmt/struct.Simple.html"title="struct uuid::fmt::Simple">Simple</a>> for <aclass="struct"href="struct.Uuid.html"title="struct kanidmd_lib::prelude::Uuid">Uuid</a></h3></section></summary><divclass="impl-items"><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.from-1"class="method trait-impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/fmt.rs.html#916-921">source</a></span><ahref="#method.from-1"class="anchor"></a><h4class="code-header">fn <ahref="https://doc.rust-lang.org/1.64.0/core/convert/trait.From.html#tymethod.from"class="fnname">from</a>(f: <aclass="struct"href="https://docs.rs/uuid/1.2.1/uuid/fmt/struct.Simple.html"title="struct uuid::fmt::Simple">Simple</a>) -><aclass="struct"href="struct.Uuid.html"title="struct kanidmd_lib::prelude::Uuid">Uuid</a></h4></section></summary><divclass='docblock'><p>Converts to this type from the input type.</p>
</div></details></div></details><detailsclass="rustdoc-toggle implementors-toggle"open><summary><sectionid="impl-From%3CUrn%3E-for-Uuid"class="impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/fmt.rs.html#916-921">source</a></span><ahref="#impl-From%3CUrn%3E-for-Uuid"class="anchor"></a><h3class="code-header in-band">impl <aclass="trait"href="https://doc.rust-lang.org/1.64.0/core/convert/trait.From.html"title="trait core::convert::From">From</a><<aclass="struct"href="https://docs.rs/uuid/1.2.1/uuid/fmt/struct.Urn.html"title="struct uuid::fmt::Urn">Urn</a>> for <aclass="struct"href="struct.Uuid.html"title="struct kanidmd_lib::prelude::Uuid">Uuid</a></h3></section></summary><divclass="impl-items"><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.from-2"class="method trait-impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/fmt.rs.html#916-921">source</a></span><ahref="#method.from-2"class="anchor"></a><h4class="code-header">fn <ahref="https://doc.rust-lang.org/1.64.0/core/convert/trait.From.html#tymethod.from"class="fnname">from</a>(f: <aclass="struct"href="https://docs.rs/uuid/1.2.1/uuid/fmt/struct.Urn.html"title="struct uuid::fmt::Urn">Urn</a>) -><aclass="struct"href="struct.Uuid.html"title="struct kanidmd_lib::prelude::Uuid">Uuid</a></h4></section></summary><divclass='docblock'><p>Converts to this type from the input type.</p>
</div></details></div></details><detailsclass="rustdoc-toggle implementors-toggle"open><summary><sectionid="impl-FromStr-for-Uuid"class="impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/parser.rs.html#22">source</a></span><ahref="#impl-FromStr-for-Uuid"class="anchor"></a><h3class="code-header in-band">impl <aclass="trait"href="https://doc.rust-lang.org/1.64.0/core/str/traits/trait.FromStr.html"title="trait core::str::traits::FromStr">FromStr</a> for <aclass="struct"href="struct.Uuid.html"title="struct kanidmd_lib::prelude::Uuid">Uuid</a></h3></section></summary><divclass="impl-items"><detailsclass="rustdoc-toggle"open><summary><sectionid="associatedtype.Err"class="associatedtype trait-impl has-srclink"><ahref="#associatedtype.Err"class="anchor"></a><h4class="code-header">type <ahref="https://doc.rust-lang.org/1.64.0/core/str/traits/trait.FromStr.html#associatedtype.Err"class="associatedtype">Err</a> = <aclass="struct"href="https://docs.rs/uuid/1.2.1/uuid/error/struct.Error.html"title="struct uuid::error::Error">Error</a></h4></section></summary><divclass='docblock'><p>The associated error which can be returned from parsing.</p>
</div></details><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.from_str"class="method trait-impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/parser.rs.html#25">source</a></span><ahref="#method.from_str"class="anchor"></a><h4class="code-header">fn <ahref="https://doc.rust-lang.org/1.64.0/core/str/traits/trait.FromStr.html#tymethod.from_str"class="fnname">from_str</a>(uuid_str: &<aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.str.html">str</a>) -><aclass="enum"href="https://doc.rust-lang.org/1.64.0/core/result/enum.Result.html"title="enum core::result::Result">Result</a><<aclass="struct"href="struct.Uuid.html"title="struct kanidmd_lib::prelude::Uuid">Uuid</a>, <<aclass="struct"href="struct.Uuid.html"title="struct kanidmd_lib::prelude::Uuid">Uuid</a> as <aclass="trait"href="https://doc.rust-lang.org/1.64.0/core/str/traits/trait.FromStr.html"title="trait core::str::traits::FromStr">FromStr</a>>::<aclass="associatedtype"href="https://doc.rust-lang.org/1.64.0/core/str/traits/trait.FromStr.html#associatedtype.Err"title="type core::str::traits::FromStr::Err">Err</a>></h4></section></summary><divclass='docblock'><p>Parses a string <code>s</code> to return a value of this type. <ahref="https://doc.rust-lang.org/1.64.0/core/str/traits/trait.FromStr.html#tymethod.from_str">Read more</a></p>
</div></details></div></details><detailsclass="rustdoc-toggle implementors-toggle"open><summary><sectionid="impl-Hash-for-Uuid"class="impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/lib.rs.html#434">source</a></span><ahref="#impl-Hash-for-Uuid"class="anchor"></a><h3class="code-header in-band">impl <aclass="trait"href="https://doc.rust-lang.org/1.64.0/core/hash/trait.Hash.html"title="trait core::hash::Hash">Hash</a> for <aclass="struct"href="struct.Uuid.html"title="struct kanidmd_lib::prelude::Uuid">Uuid</a></h3></section></summary><divclass="impl-items"><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.hash"class="method trait-impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/lib.rs.html#434">source</a></span><ahref="#method.hash"class="anchor"></a><h4class="code-header">fn <ahref="https://doc.rust-lang.org/1.64.0/core/hash/trait.Hash.html#tymethod.hash"class="fnname">hash</a><__H>(&self, state: <aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.reference.html">&mut </a>__H) <spanclass="where fmt-newline">where<br> __H: <aclass="trait"href="https://doc.rust-lang.org/1.64.0/core/hash/trait.Hasher.html"title="trait core::hash::Hasher">Hasher</a>, </span></h4></section></summary><divclass='docblock'><p>Feeds this value into the given <ahref="https://doc.rust-lang.org/1.64.0/core/hash/trait.Hasher.html"title="Hasher"><code>Hasher</code></a>. <ahref="https://doc.rust-lang.org/1.64.0/core/hash/trait.Hash.html#tymethod.hash">Read more</a></p>
</div></details><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.hash_slice"class="method trait-impl has-srclink"><spanclass="rightside"><spanclass="since"title="Stable since Rust version 1.3.0">1.3.0</span> · <aclass="srclink"href="https://doc.rust-lang.org/1.64.0/src/core/hash/mod.rs.html#237-239">source</a></span><ahref="#method.hash_slice"class="anchor"></a><h4class="code-header">fn <ahref="https://doc.rust-lang.org/1.64.0/core/hash/trait.Hash.html#method.hash_slice"class="fnname">hash_slice</a><H>(data: &<aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.slice.html">[Self]</a>, state: <aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.reference.html">&mut </a>H) <spanclass="where fmt-newline">where<br> H: <aclass="trait"href="https://doc.rust-lang.org/1.64.0/core/hash/trait.Hasher.html"title="trait core::hash::Hasher">Hasher</a>, </span></h4></section></summary><divclass='docblock'><p>Feeds a slice of this type into the given <ahref="https://doc.rust-lang.org/1.64.0/core/hash/trait.Hasher.html"title="Hasher"><code>Hasher</code></a>. <ahref="https://doc.rust-lang.org/1.64.0/core/hash/trait.Hash.html#method.hash_slice">Read more</a></p>
</div></details></div></details><detailsclass="rustdoc-toggle implementors-toggle"open><summary><sectionid="impl-LowerHex-for-Uuid"class="impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/fmt.rs.html#43">source</a></span><ahref="#impl-LowerHex-for-Uuid"class="anchor"></a><h3class="code-header in-band">impl <aclass="trait"href="https://doc.rust-lang.org/1.64.0/core/fmt/trait.LowerHex.html"title="trait core::fmt::LowerHex">LowerHex</a> for <aclass="struct"href="struct.Uuid.html"title="struct kanidmd_lib::prelude::Uuid">Uuid</a></h3></section></summary><divclass="impl-items"><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.fmt-1"class="method trait-impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/fmt.rs.html#44">source</a></span><ahref="#method.fmt-1"class="anchor"></a><h4class="code-header">fn <ahref="https://doc.rust-lang.org/1.64.0/core/fmt/trait.LowerHex.html#tymethod.fmt"class="fnname">fmt</a>(&self, f: &mut <aclass="struct"href="https://doc.rust-lang.org/1.64.0/core/fmt/struct.Formatter.html"title="struct core::fmt::Formatter">Formatter</a><'_>) -><aclass="enum"href="https://doc.rust-lang.org/1.64.0/core/result/enum.Result.html"title="enum core::result::Result">Result</a><<aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.unit.html">()</a>, <aclass="struct"href="https://doc.rust-lang.org/1.64.0/core/fmt/struct.Error.html"title="struct core::fmt::Error">Error</a>></h4></section></summary><divclass='docblock'><p>Formats the value using the given formatter.</p>
</div></details></div></details><detailsclass="rustdoc-toggle implementors-toggle"open><summary><sectionid="impl-Ord-for-Uuid"class="impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/lib.rs.html#434">source</a></span><ahref="#impl-Ord-for-Uuid"class="anchor"></a><h3class="code-header in-band">impl <aclass="trait"href="https://doc.rust-lang.org/1.64.0/core/cmp/trait.Ord.html"title="trait core::cmp::Ord">Ord</a> for <aclass="struct"href="struct.Uuid.html"title="struct kanidmd_lib::prelude::Uuid">Uuid</a></h3></section></summary><divclass="impl-items"><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.cmp"class="method trait-impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/lib.rs.html#434">source</a></span><ahref="#method.cmp"class="anchor"></a><h4class="code-header">fn <ahref="https://doc.rust-lang.org/1.64.0/core/cmp/trait.Ord.html#tymethod.cmp"class="fnname">cmp</a>(&self, other: &<aclass="struct"href="struct.Uuid.html"title="struct kanidmd_lib::prelude::Uuid">Uuid</a>) -><aclass="enum"href="https://doc.rust-lang.org/1.64.0/core/cmp/enum.Ordering.html"title="enum core::cmp::Ordering">Ordering</a></h4></section></summary><divclass='docblock'><p>This method returns an <ahref="https://doc.rust-lang.org/1.64.0/core/cmp/enum.Ordering.html"title="Ordering"><code>Ordering</code></a> between <code>self</code> and <code>other</code>. <ahref="https://doc.rust-lang.org/1.64.0/core/cmp/trait.Ord.html#tymethod.cmp">Read more</a></p>
</div></details><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.max"class="method trait-impl has-srclink"><spanclass="rightside"><spanclass="since"title="Stable since Rust version 1.21.0">1.21.0</span> · <aclass="srclink"href="https://doc.rust-lang.org/1.64.0/src/core/cmp.rs.html#800-803">source</a></span><ahref="#method.max"class="anchor"></a><h4class="code-header">fn <ahref="https://doc.rust-lang.org/1.64.0/core/cmp/trait.Ord.html#method.max"class="fnname">max</a>(self, other: Self) -> Self</h4></section></summary><divclass='docblock'><p>Compares and returns the maximum of two values. <ahref="https://doc.rust-lang.org/1.64.0/core/cmp/trait.Ord.html#method.max">Read more</a></p>
</div></details><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.min"class="method trait-impl has-srclink"><spanclass="rightside"><spanclass="since"title="Stable since Rust version 1.21.0">1.21.0</span> · <aclass="srclink"href="https://doc.rust-lang.org/1.64.0/src/core/cmp.rs.html#827-830">source</a></span><ahref="#method.min"class="anchor"></a><h4class="code-header">fn <ahref="https://doc.rust-lang.org/1.64.0/core/cmp/trait.Ord.html#method.min"class="fnname">min</a>(self, other: Self) -> Self</h4></section></summary><divclass='docblock'><p>Compares and returns the minimum of two values. <ahref="https://doc.rust-lang.org/1.64.0/core/cmp/trait.Ord.html#method.min">Read more</a></p>
</div></details><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.clamp"class="method trait-impl has-srclink"><spanclass="rightside"><spanclass="since"title="Stable since Rust version 1.50.0">1.50.0</span> · <aclass="srclink"href="https://doc.rust-lang.org/1.64.0/src/core/cmp.rs.html#859-863">source</a></span><ahref="#method.clamp"class="anchor"></a><h4class="code-header">fn <ahref="https://doc.rust-lang.org/1.64.0/core/cmp/trait.Ord.html#method.clamp"class="fnname">clamp</a>(self, min: Self, max: Self) -> Self <spanclass="where fmt-newline">where<br> Self: <aclass="trait"href="https://doc.rust-lang.org/1.64.0/core/cmp/trait.PartialOrd.html"title="trait core::cmp::PartialOrd">PartialOrd</a><Self>, </span></h4></section></summary><divclass='docblock'><p>Restrict a value to a certain interval. <ahref="https://doc.rust-lang.org/1.64.0/core/cmp/trait.Ord.html#method.clamp">Read more</a></p>
</div></details></div></details><detailsclass="rustdoc-toggle implementors-toggle"open><summary><sectionid="impl-PartialEq%3CUuid%3E-for-Uuid"class="impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/lib.rs.html#434">source</a></span><ahref="#impl-PartialEq%3CUuid%3E-for-Uuid"class="anchor"></a><h3class="code-header in-band">impl <aclass="trait"href="https://doc.rust-lang.org/1.64.0/core/cmp/trait.PartialEq.html"title="trait core::cmp::PartialEq">PartialEq</a><<aclass="struct"href="struct.Uuid.html"title="struct kanidmd_lib::prelude::Uuid">Uuid</a>> for <aclass="struct"href="struct.Uuid.html"title="struct kanidmd_lib::prelude::Uuid">Uuid</a></h3></section></summary><divclass="impl-items"><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.eq"class="method trait-impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/lib.rs.html#434">source</a></span><ahref="#method.eq"class="anchor"></a><h4class="code-header">fn <ahref="https://doc.rust-lang.org/1.64.0/core/cmp/trait.PartialEq.html#tymethod.eq"class="fnname">eq</a>(&self, other: &<aclass="struct"href="struct.Uuid.html"title="struct kanidmd_lib::prelude::Uuid">Uuid</a>) -><aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.bool.html">bool</a></h4></section></summary><divclass='docblock'><p>This method tests for <code>self</code> and <code>other</code> values to be equal, and is used
</div></details><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.lt"class="method trait-impl has-srclink"><spanclass="rightside"><spanclass="since"title="Stable since Rust version 1.0.0">1.0.0</span> · <aclass="srclink"href="https://doc.rust-lang.org/1.64.0/src/core/cmp.rs.html#1122">source</a></span><ahref="#method.lt"class="anchor"></a><h4class="code-header">fn <ahref="https://doc.rust-lang.org/1.64.0/core/cmp/trait.PartialOrd.html#method.lt"class="fnname">lt</a>(&self, other: <aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.reference.html">&</a>Rhs) -><aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.bool.html">bool</a></h4></section></summary><divclass='docblock'><p>This method tests less than (for <code>self</code> and <code>other</code>) and is used by the <code><</code> operator. <ahref="https://doc.rust-lang.org/1.64.0/core/cmp/trait.PartialOrd.html#method.lt">Read more</a></p>
</div></details><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.le"class="method trait-impl has-srclink"><spanclass="rightside"><spanclass="since"title="Stable since Rust version 1.0.0">1.0.0</span> · <aclass="srclink"href="https://doc.rust-lang.org/1.64.0/src/core/cmp.rs.html#1141">source</a></span><ahref="#method.le"class="anchor"></a><h4class="code-header">fn <ahref="https://doc.rust-lang.org/1.64.0/core/cmp/trait.PartialOrd.html#method.le"class="fnname">le</a>(&self, other: <aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.reference.html">&</a>Rhs) -><aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.bool.html">bool</a></h4></section></summary><divclass='docblock'><p>This method tests less than or equal to (for <code>self</code> and <code>other</code>) and is used by the <code><=</code>
</div></details><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.gt"class="method trait-impl has-srclink"><spanclass="rightside"><spanclass="since"title="Stable since Rust version 1.0.0">1.0.0</span> · <aclass="srclink"href="https://doc.rust-lang.org/1.64.0/src/core/cmp.rs.html#1163">source</a></span><ahref="#method.gt"class="anchor"></a><h4class="code-header">fn <ahref="https://doc.rust-lang.org/1.64.0/core/cmp/trait.PartialOrd.html#method.gt"class="fnname">gt</a>(&self, other: <aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.reference.html">&</a>Rhs) -><aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.bool.html">bool</a></h4></section></summary><divclass='docblock'><p>This method tests greater than (for <code>self</code> and <code>other</code>) and is used by the <code>></code> operator. <ahref="https://doc.rust-lang.org/1.64.0/core/cmp/trait.PartialOrd.html#method.gt">Read more</a></p>
</div></details><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.ge"class="method trait-impl has-srclink"><spanclass="rightside"><spanclass="since"title="Stable since Rust version 1.0.0">1.0.0</span> · <aclass="srclink"href="https://doc.rust-lang.org/1.64.0/src/core/cmp.rs.html#1182">source</a></span><ahref="#method.ge"class="anchor"></a><h4class="code-header">fn <ahref="https://doc.rust-lang.org/1.64.0/core/cmp/trait.PartialOrd.html#method.ge"class="fnname">ge</a>(&self, other: <aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.reference.html">&</a>Rhs) -><aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.bool.html">bool</a></h4></section></summary><divclass='docblock'><p>This method tests greater than or equal to (for <code>self</code> and <code>other</code>) and is used by the <code>>=</code>
</div></details></div></details><detailsclass="rustdoc-toggle implementors-toggle"open><summary><sectionid="impl-Serialize-for-Uuid"class="impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/external/serde_support.rs.html#23">source</a></span><ahref="#impl-Serialize-for-Uuid"class="anchor"></a><h3class="code-header in-band">impl <aclass="trait"href="https://docs.rs/serde/1.0.145/serde/ser/trait.Serialize.html"title="trait serde::ser::Serialize">Serialize</a> for <aclass="struct"href="struct.Uuid.html"title="struct kanidmd_lib::prelude::Uuid">Uuid</a></h3></section></summary><divclass="impl-items"><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.serialize"class="method trait-impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/external/serde_support.rs.html#24">source</a></span><ahref="#method.serialize"class="anchor"></a><h4class="code-header">fn <ahref="https://docs.rs/serde/1.0.145/serde/ser/trait.Serialize.html#tymethod.serialize"class="fnname">serialize</a><S>(<br> &self,<br> serializer: S<br>) -><aclass="enum"href="https://doc.rust-lang.org/1.64.0/core/result/enum.Result.html"title="enum core::result::Result">Result</a><<S as <aclass="trait"href="https://docs.rs/serde/1.0.145/serde/ser/trait.Serializer.html"title="trait serde::ser::Serializer">Serializer</a>>::<aclass="associatedtype"href="https://docs.rs/serde/1.0.145/serde/ser/trait.Serializer.html#associatedtype.Ok"title="type serde::ser::Serializer::Ok">Ok</a>, <S as <aclass="trait"href="https://docs.rs/serde/1.0.145/serde/ser/trait.Serializer.html"title="trait serde::ser::Serializer">Serializer</a>>::<aclass="associatedtype"href="https://docs.rs/serde/1.0.145/serde/ser/trait.Serializer.html#associatedtype.Error"title="type serde::ser::Serializer::Error">Error</a>><spanclass="where fmt-newline">where<br> S: <aclass="trait"href="https://docs.rs/serde/1.0.145/serde/ser/trait.Serializer.html"title="trait serde::ser::Serializer">Serializer</a>, </span></h4></section></summary><divclass='docblock'><p>Serialize this value into the given Serde serializer. <ahref="https://docs.rs/serde/1.0.145/serde/ser/trait.Serialize.html#tymethod.serialize">Read more</a></p>
</div></details></div></details><detailsclass="rustdoc-toggle implementors-toggle"open><summary><sectionid="impl-TryFrom%3C%26str%3E-for-Uuid"class="impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/parser.rs.html#30">source</a></span><ahref="#impl-TryFrom%3C%26str%3E-for-Uuid"class="anchor"></a><h3class="code-header in-band">impl <aclass="trait"href="https://doc.rust-lang.org/1.64.0/core/convert/trait.TryFrom.html"title="trait core::convert::TryFrom">TryFrom</a><&<aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.str.html">str</a>> for <aclass="struct"href="struct.Uuid.html"title="struct kanidmd_lib::prelude::Uuid">Uuid</a></h3></section></summary><divclass="impl-items"><detailsclass="rustdoc-toggle"open><summary><sectionid="associatedtype.Error"class="associatedtype trait-impl has-srclink"><ahref="#associatedtype.Error"class="anchor"></a><h4class="code-header">type <ahref="https://doc.rust-lang.org/1.64.0/core/convert/trait.TryFrom.html#associatedtype.Error"class="associatedtype">Error</a> = <aclass="struct"href="https://docs.rs/uuid/1.2.1/uuid/error/struct.Error.html"title="struct uuid::error::Error">Error</a></h4></section></summary><divclass='docblock'><p>The type returned in the event of a conversion error.</p>
</div></details><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.try_from"class="method trait-impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/parser.rs.html#33">source</a></span><ahref="#method.try_from"class="anchor"></a><h4class="code-header">fn <ahref="https://doc.rust-lang.org/1.64.0/core/convert/trait.TryFrom.html#tymethod.try_from"class="fnname">try_from</a>(uuid_str: &<aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.str.html">str</a>) -><aclass="enum"href="https://doc.rust-lang.org/1.64.0/core/result/enum.Result.html"title="enum core::result::Result">Result</a><<aclass="struct"href="struct.Uuid.html"title="struct kanidmd_lib::prelude::Uuid">Uuid</a>, <<aclass="struct"href="struct.Uuid.html"title="struct kanidmd_lib::prelude::Uuid">Uuid</a> as <aclass="trait"href="https://doc.rust-lang.org/1.64.0/core/convert/trait.TryFrom.html"title="trait core::convert::TryFrom">TryFrom</a><&<aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.str.html">str</a>>>::<aclass="associatedtype"href="https://doc.rust-lang.org/1.64.0/core/convert/trait.TryFrom.html#associatedtype.Error"title="type core::convert::TryFrom::Error">Error</a>></h4></section></summary><divclass='docblock'><p>Performs the conversion.</p>
</div></details></div></details><detailsclass="rustdoc-toggle implementors-toggle"open><summary><sectionid="impl-UpperHex-for-Uuid"class="impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/fmt.rs.html#53">source</a></span><ahref="#impl-UpperHex-for-Uuid"class="anchor"></a><h3class="code-header in-band">impl <aclass="trait"href="https://doc.rust-lang.org/1.64.0/core/fmt/trait.UpperHex.html"title="trait core::fmt::UpperHex">UpperHex</a> for <aclass="struct"href="struct.Uuid.html"title="struct kanidmd_lib::prelude::Uuid">Uuid</a></h3></section></summary><divclass="impl-items"><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.fmt"class="method trait-impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/fmt.rs.html#55">source</a></span><ahref="#method.fmt"class="anchor"></a><h4class="code-header">fn <ahref="https://doc.rust-lang.org/1.64.0/core/fmt/trait.UpperHex.html#tymethod.fmt"class="fnname">fmt</a>(&self, f: &mut <aclass="struct"href="https://doc.rust-lang.org/1.64.0/core/fmt/struct.Formatter.html"title="struct core::fmt::Formatter">Formatter</a><'_>) -><aclass="enum"href="https://doc.rust-lang.org/1.64.0/core/result/enum.Result.html"title="enum core::result::Result">Result</a><<aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.unit.html">()</a>, <aclass="struct"href="https://doc.rust-lang.org/1.64.0/core/fmt/struct.Error.html"title="struct core::fmt::Error">Error</a>></h4></section></summary><divclass='docblock'><p>Formats the value using the given formatter.</p>
</div></details></div></details><sectionid="impl-Copy-for-Uuid"class="impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/lib.rs.html#434">source</a></span><ahref="#impl-Copy-for-Uuid"class="anchor"></a><h3class="code-header in-band">impl <aclass="trait"href="https://doc.rust-lang.org/1.64.0/core/marker/trait.Copy.html"title="trait core::marker::Copy">Copy</a> for <aclass="struct"href="struct.Uuid.html"title="struct kanidmd_lib::prelude::Uuid">Uuid</a></h3></section><sectionid="impl-Eq-for-Uuid"class="impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/lib.rs.html#434">source</a></span><ahref="#impl-Eq-for-Uuid"class="anchor"></a><h3class="code-header in-band">impl <aclass="trait"href="https://doc.rust-lang.org/1.64.0/core/cmp/trait.Eq.html"title="trait core::cmp::Eq">Eq</a> for <aclass="struct"href="struct.Uuid.html"title="struct kanidmd_lib::prelude::Uuid">Uuid</a></h3></section><sectionid="impl-StructuralEq-for-Uuid"class="impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/lib.rs.html#434">source</a></span><ahref="#impl-StructuralEq-for-Uuid"class="anchor"></a><h3class="code-header in-band">impl <aclass="trait"href="https://doc.rust-lang.org/1.64.0/core/marker/trait.StructuralEq.html"title="trait core::marker::StructuralEq">StructuralEq</a> for <aclass="struct"href="struct.Uuid.html"title="struct kanidmd_lib::prelude::Uuid">Uuid</a></h3></section><sectionid="impl-StructuralPartialEq-for-Uuid"class="impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/uuid/1.2.1/src/uuid/lib.rs.html#434">source</a></span><ahref="#impl-StructuralPartialEq-for-Uuid"class="anchor"></a><h3class="code-header in-band">impl <aclass="trait"href="https://doc.rust-lang.org/1.64.0/core/marker/trait.StructuralPartialEq.html"title="trait core::marker::StructuralPartialEq">StructuralPartialEq</a> for <aclass="struct"href="struct.Uuid.html"title="struct kanidmd_lib::prelude::Uuid">Uuid</a></h3></section></div><h2id="synthetic-implementations"class="small-section-header">Auto Trait Implementations<ahref="#synthetic-implementations"class="anchor"></a></h2><divid="synthetic-implementations-list"><sectionid="impl-RefUnwindSafe-for-Uuid"class="impl has-srclink"><ahref="#impl-RefUnwindSafe-for-Uuid"class="anchor"></a><h3class="code-header in-band">impl <aclass="trait"href="https://doc.rust-lang.org/1.64.0/core/panic/unwind_safe/trait.RefUnwindSafe.html"title="trait core::panic::unwind_safe::RefUnwindSafe">RefUnwindSafe</a> for <aclass="struct"href="struct.Uuid.html"title="struct kanidmd_lib::prelude::Uuid">Uuid</a></h3></section><sectionid="impl-Send-for-Uuid"class="impl has-srclink"><ahref="#impl-Send-for-Uuid"class="anchor"></a><h3class="code-header in-band">impl <aclass="trait"href="https://doc.rust-lang.org/1.64.0/core/marker/trait.Send.html"title="trait core::marker::Send">Send</a> for <aclass="struct"href="struct.Uuid.html"title="struct kanidmd_lib::prelude::Uuid">Uuid</a></h3></section><sectionid="impl-Sync-for-Uuid"class="impl has-srclink"><ahref="#impl-Sync-for-Uuid"class="anchor"></a><h3class="code-header in-band">impl <aclass="trait"href="https://doc.rust-lang.org/1.64.0/core/marker/trait.Sync.html"title="trait core::marker::Sync">Sync</a> for <aclass="struct"href="struct.Uuid.html"title="struct kanidmd_lib::prelude::Uuid">Uuid</a></h3></section><sectionid="impl-Unpin-for-Uuid"class="impl has-srclink"><ahref="#impl-Unpin-for-Uuid"class="anchor"></a><h3class="code-header in-band">impl <aclass="trait"href="https://doc.rust-lang.org/1.64.0/core/marker/trait.Unpin.html"title="trait core::marker::Unpin">Unpin</a> for <aclass="struct"href="struct.Uuid.html"title="struct kanidmd_lib::prelude::Uuid">Uuid</a></h3></section><sectionid="impl-UnwindSafe-for-Uuid"class="impl has-srclink"><ahref="#impl-UnwindSafe-for-Uuid"class="anchor"></a><h3class="code-header in-band">impl <acl
</div></details></div></details><detailsclass="rustdoc-toggle implementors-toggle"><summary><sectionid="impl-Instrument-for-Uuid"class="impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/tracing/0.1.37/src/tracing/instrument.rs.html#276">source</a></span><ahref="#impl-Instrument-for-Uuid"class="anchor"></a><h3class="code-header in-band">impl<T><aclass="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><divclass="impl-items"><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.instrument"class="method trait-impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/tracing/0.1.37/src/tracing/instrument.rs.html#82">source</a></span><ahref="#method.instrument"class="anchor"></a><h4class="code-header">fn <ahref="https://docs.rs/tracing/0.1.37/tracing/instrument/trait.Instrument.html#method.instrument"class="fnname">instrument</a>(self, span: <aclass="struct"href="https://docs.rs/tracing/0.1.37/tracing/span/struct.Span.html"title="struct tracing::span::Span">Span</a>) -><aclass="struct"href="https://docs.rs/tracing/0.1.37/tracing/instrument/struct.Instrumented.html"title="struct tracing::instrument::Instrumented">Instrumented</a><Self></h4></section></summary><divclass='docblock'><p>Instruments this type with the provided <ahref="https://docs.rs/tracing/0.1.37/tracing/span/struct.Span.html"title="Span"><code>Span</code></a>, returning an
</div></details><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.in_current_span"class="method trait-impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/tracing/0.1.37/src/tracing/instrument.rs.html#121">source</a></span><ahref="#method.in_current_span"class="anchor"></a><h4class="code-header">fn <ahref="https://docs.rs/tracing/0.1.37/tracing/instrument/trait.Instrument.html#method.in_current_span"class="fnname">in_current_span</a>(self) -><aclass="struct"href="https://docs.rs/tracing/0.1.37/tracing/instrument/struct.Instrumented.html"title="struct tracing::instrument::Instrumented">Instrumented</a><Self></h4></section></summary><divclass='docblock'><p>Instruments this type with the <ahref="https://docs.rs/tracing/0.1.37/tracing/span/struct.Span.html#method.current">current</a><ahref="https://docs.rs/tracing/0.1.37/tracing/span/struct.Span.html"><code>Span</code></a>, returning an
</div></details></div></details><detailsclass="rustdoc-toggle implementors-toggle"><summary><sectionid="impl-Into%3CU%3E-for-Uuid"class="impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://doc.rust-lang.org/1.64.0/src/core/convert/mod.rs.html#541">source</a></span><ahref="#impl-Into%3CU%3E-for-Uuid"class="anchor"></a><h3class="code-header in-band">impl<T, U><aclass="trait"href="https://doc.rust-lang.org/1.64.0/core/convert/trait.Into.html"title="trait core::convert::Into">Into</a><U> for T <spanclass="where fmt-newline">where<br> U: <aclass="trait"href="https://doc.rust-lang.org/1.64.0/core/convert/trait.From.html"title="trait core::convert::From">From</a><T>, </span></h3></section></summary><divclass="impl-items"><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.into"class="method trait-impl has-srclink"><spanclass="rightside"><spanclass="since"title="const unstable">const: <ahref="https://github.com/rust-lang/rust/issues/88674"title="Tracking issue for const_convert">unstable</a></span> · <aclass="srclink"href="https://doc.rust-lang.org/1.64.0/src/core/convert/mod.rs.html#549">source</a></span><ahref="#method.into"class="anchor"></a><h4class="code-header">fn <ahref="https://doc.rust-lang.org/1.64.0/core/convert/trait.Into.html#tymethod.into"class="fnname">into</a>(self) -> U</h4></section></summary><divclass="docblock"><p>Calls <code>U::from(self)</code>.</p>
<p>That is, this conversion is whatever the implementation of
<code><ahref="https://doc.rust-lang.org/1.64.0/core/convert/trait.From.html"title="From">From</a><T> for U</code> chooses to do.</p>
</div></details></div></details><detailsclass="rustdoc-toggle implementors-toggle"><summary><sectionid="impl-Pointable-for-Uuid"class="impl has-srclink"><ahref="#impl-Pointable-for-Uuid"class="anchor"></a><h3class="code-header in-band">impl<T> Pointable for T</h3></section></summary><divclass="impl-items"><detailsclass="rustdoc-toggle"open><summary><sectionid="associatedconstant.ALIGN"class="associatedconstant trait-impl has-srclink"><ahref="#associatedconstant.ALIGN"class="anchor"></a><h4class="code-header">const <aclass="constant">ALIGN</a>: <aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.usize.html">usize</a> = mem::align_of::<T>()</h4></section></summary><divclass='docblock'><p>The alignment of pointer.</p>
</div></details><detailsclass="rustdoc-toggle"open><summary><sectionid="associatedtype.Init"class="associatedtype trait-impl has-srclink"><ahref="#associatedtype.Init"class="anchor"></a><h4class="code-header">type <aclass="associatedtype">Init</a> = T</h4></section></summary><divclass='docblock'><p>The type for initializers.</p>
</div></details><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.init"class="method trait-impl has-srclink"><ahref="#method.init"class="anchor"></a><h4class="code-header">unsafe fn <aclass="fnname">init</a>(init: <T as Pointable>::Init) -><aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.usize.html">usize</a></h4></section></summary><divclass='docblock'><p>Initializes a with the given initializer. <a>Read more</a></p>
</div></details><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.deref"class="method trait-impl has-srclink"><ahref="#method.deref"class="anchor"></a><h4class="code-header">unsafe fn <aclass="fnname">deref</a><'a>(ptr: <aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.usize.html">usize</a>) -><aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.reference.html">&'a </a>T</h4></section></summary><divclass='docblock'><p>Dereferences the given pointer. <a>Read more</a></p>
</div></details><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.deref_mut"class="method trait-impl has-srclink"><ahref="#method.deref_mut"class="anchor"></a><h4class="code-header">unsafe fn <aclass="fnname">deref_mut</a><'a>(ptr: <aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.usize.html">usize</a>) -><aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.reference.html">&'a mut </a>T</h4></section></summary><divclass='docblock'><p>Mutably dereferences the given pointer. <a>Read more</a></p>
</div></details><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.drop"class="method trait-impl has-srclink"><ahref="#method.drop"class="anchor"></a><h4class="code-header">unsafe fn <aclass="fnname">drop</a>(ptr: <aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.usize.html">usize</a>)</h4></section></summary><divclass='docblock'><p>Drops the object pointed to by the given pointer. <a>Read more</a></p>
</div></details></div></details><detailsclass="rustdoc-toggle implementors-toggle"><summary><sectionid="impl-Same%3CT%3E-for-Uuid"class="impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/typenum/1.15.0/src/typenum/type_operators.rs.html#34">source</a></span><ahref="#impl-Same%3CT%3E-for-Uuid"class="anchor"></a><h3class="code-header in-band">impl<T><aclass="trait"href="https://docs.rs/typenum/1.15.0/typenum/type_operators/trait.Same.html"title="trait typenum::type_operators::Same">Same</a><T> for T</h3></section></summary><divclass="impl-items"><detailsclass="rustdoc-toggle"open><summary><sectionid="associatedtype.Output"class="associatedtype trait-impl has-srclink"><ahref="#associatedtype.Output"class="anchor"></a><h4class="code-header">type <ahref="https://docs.rs/typenum/1.15.0/typenum/type_operators/trait.Same.html#associatedtype.Output"class="associatedtype">Output</a> = T</h4></section></summary><divclass='docblock'><p>Should always be <code>Self</code></p>
</div></details></div></details><detailsclass="rustdoc-toggle implementors-toggle"><summary><sectionid="impl-Serialize-for-Uuid-1"class="impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/erased-serde/0.3.23/src/erased_serde/ser.rs.html#238">source</a></span><ahref="#impl-Serialize-for-Uuid-1"class="anchor"></a><h3class="code-header in-band">impl<T><aclass="trait"href="https://docs.rs/erased-serde/0.3.23/erased_serde/ser/trait.Serialize.html"title="trait erased_serde::ser::Serialize">Serialize</a> for T <spanclass="where fmt-newline">where<br> T: <aclass="trait"href="https://docs.rs/serde/1.0.145/serde/ser/trait.Serialize.html"title="trait serde::ser::Serialize">Serialize</a> + ?<aclass="trait"href="https://doc.rust-lang.org/1.64.0/core/marker/trait.Sized.html"title="trait core::marker::Sized">Sized</a>, </span></h3></section></summary><divclass="impl-items"><sectionid="method.erased_serialize"class="method trait-impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/erased-serde/0.3.23/src/erased_serde/ser.rs.html#242">source</a></span><ahref="#method.erased_serialize"class="anchor"></a><h4class="code-header">fn <ahref="https://docs.rs/erased-serde/0.3.23/erased_serde/ser/trait.Serialize.html#tymethod.erased_serialize"class="fnname">erased_serialize</a>(&self, serializer: &mut dyn <aclass="trait"href="https://docs.rs/erased-serde/0.3.23/erased_serde/ser/trait.Serializer.html"title="trait erased_serde::ser::Serializer">Serializer</a>) -><aclass="enum"href="https://doc.rust-lang.org/1.64.0/core/result/enum.Result.html"title="enum core::result::Result">Result</a><Ok, <aclass="struct"href="https://docs.rs/erased-serde/0.3.23/erased_serde/error/struct.Error.html"title="struct erased_serde::error::Error">Error</a>></h4></section></div></details><detailsclass="rustdoc-toggle implementors-toggle"><summary><sectionid="impl-ToHex-for-Uuid"class="impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/hex/0.4.3/src/hex/lib.rs.html#137">source</a></span><ahref="#impl-ToHex-for-Uuid"class="anchor"></a><h3class="code-header in-band">impl<T><aclass="trait"href="https://docs.rs/hex/0.4.3/hex/trait.ToHex.html"title="trait hex::ToHex">ToHex</a> for T <spanclass="where fmt-newline">where<br> T: <aclass="trait"href="https://doc.rust-lang.org/1.64.0/core/convert/trait.AsRef.html"title="trait core::convert::AsRef">AsRef</a><[<aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.u8.html">u8</a>]>, </span></h3></section></summary><divclass="impl-items"><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.encode_hex"class="method trait-impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/hex/0.4.3/src/hex/lib.rs.html#138">source</a></span><ahref="#method.encode_hex"class="anchor"></a><h4class="code-header">fn <ahref="https://docs.rs/hex/0.4.3/hex/trait.ToHex.html#tymethod.encode_hex"class="fnname">encode_hex</a><U>(&self) -> U <spanclass="where fmt-newline">where<br> U: <aclass="trait"href="https://doc.rust-lang.org/1.64.0/core/iter/traits/collect/trait.FromIterator.html"title="trait core::iter::traits::collect::FromIterator">FromIterator</a><<aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.char.html">char</a>>, </span></h4></section></summary><divclass='docblock'><p>Encode the hex strict representing <code>self</code> into the result. Lower case
letters are used (e.g. <code>f9b4ca</code>) <ahref="https://docs.rs/hex/0.4.3/hex/trait.ToHex.html#tymethod.encode_hex">Read more</a></p>
</div></details><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.encode_hex_upper"class="method trait-impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/hex/0.4.3/src/hex/lib.rs.html#142">source</a></span><ahref="#method.encode_hex_upper"class="anchor"></a><h4class="code-header">fn <ahref="https://docs.rs/hex/0.4.3/hex/trait.ToHex.html#tymethod.encode_hex_upper"class="fnname">encode_hex_upper</a><U>(&self) -> U <spanclass="where fmt-newline">where<br> U: <aclass="trait"href="https://doc.rust-lang.org/1.64.0/core/iter/traits/collect/trait.FromIterator.html"title="trait core::iter::traits::collect::FromIterator">FromIterator</a><<aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.char.html">char</a>>, </span></h4></section></summary><divclass='docblock'><p>Encode the hex strict representing <code>self</code> into the result. Upper case
letters are used (e.g. <code>F9B4CA</code>) <ahref="https://docs.rs/hex/0.4.3/hex/trait.ToHex.html#tymethod.encode_hex_upper">Read more</a></p>
</div></details></div></details><detailsclass="rustdoc-toggle implementors-toggle"><summary><sectionid="impl-ToOwned-for-Uuid"class="impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://doc.rust-lang.org/1.64.0/src/alloc/borrow.rs.html#83">source</a></span><ahref="#impl-ToOwned-for-Uuid"class="anchor"></a><h3class="code-header in-band">impl<T><aclass="trait"href="https://doc.rust-lang.org/1.64.0/alloc/borrow/trait.ToOwned.html"title="trait alloc::borrow::ToOwned">ToOwned</a> for T <spanclass="where fmt-newline">where<br> T: <aclass="trait"href="https://doc.rust-lang.org/1.64.0/core/clone/trait.Clone.html"title="trait core::clone::Clone">Clone</a>, </span></h3></section></summary><divclass="impl-items"><detailsclass="rustdoc-toggle"open><summary><sectionid="associatedtype.Owned"class="associatedtype trait-impl has-srclink"><ahref="#associatedtype.Owned"class="anchor"></a><h4class="code-header">type <ahref="https://doc.rust-lang.org/1.64.0/alloc/borrow/trait.ToOwned.html#associatedtype.Owned"class="associatedtype">Owned</a> = T</h4></section></summary><divclass='docblock'><p>The resulting type after obtaining ownership.</p>
</div></details><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.to_owned"class="method trait-impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://doc.rust-lang.org/1.64.0/src/alloc/borrow.rs.html#88">source</a></span><ahref="#method.to_owned"class="anchor"></a><h4class="code-header">fn <ahref="https://doc.rust-lang.org/1.64.0/alloc/borrow/trait.ToOwned.html#tymethod.to_owned"class="fnname">to_owned</a>(&self) -> T</h4></section></summary><divclass='docblock'><p>Creates owned data from borrowed data, usually by cloning. <ahref="https://doc.rust-lang.org/1.64.0/alloc/borrow/trait.ToOwned.html#tymethod.to_owned">Read more</a></p>
</div></details><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.clone_into"class="method trait-impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://doc.rust-lang.org/1.64.0/src/alloc/borrow.rs.html#92">source</a></span><ahref="#method.clone_into"class="anchor"></a><h4class="code-header">fn <ahref="https://doc.rust-lang.org/1.64.0/alloc/borrow/trait.ToOwned.html#method.clone_into"class="fnname">clone_into</a>(&self, target: <aclass="primitive"href="https://doc.rust-lang.org/1.64.0/std/primitive.reference.html">&mut </a>T)</h4></section></summary><divclass='docblock'><p>Uses borrowed data to replace owned data, usually by cloning. <ahref="https://doc.rust-lang.org/1.64.0/alloc/borrow/trait.ToOwned.html#method.clone_into">Read more</a></p>
</div></details></div></details><detailsclass="rustdoc-toggle implementors-toggle"><summary><sectionid="impl-ToString-for-Uuid"class="impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://doc.rust-lang.org/1.64.0/src/alloc/string.rs.html#2479">source</a></span><ahref="#impl-ToString-for-Uuid"class="anchor"></a><h3class="code-header in-band">impl<T><aclass="trait"href="https://doc.rust-lang.org/1.64.0/alloc/string/trait.ToString.html"title="trait alloc::string::ToString">ToString</a> for T <spanclass="where fmt-newline">where<br> T: <aclass="trait"href="https://doc.rust-lang.org/1.64.0/core/fmt/trait.Display.html"title="trait core::fmt::Display">Display</a> + ?<aclass="trait"href="https://doc.rust-lang.org/1.64.0/core/marker/trait.Sized.html"title="trait core::marker::Sized">Sized</a>, </span></h3></section></summary><divclass="impl-items"><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.to_string"class="method trait-impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://doc.rust-lang.org/1.64.0/src/alloc/string.rs.html#2485">source</a></span><ahref="#method.to_string"class="anchor"></a><h4class="code-header">default fn <ahref="https://doc.rust-lang.org/1.64.0/alloc/string/trait.ToString.html#tymethod.to_string"class="fnname">to_string</a>(&self) -><aclass="struct"href="https://doc.rust-lang.org/1.64.0/alloc/string/struct.String.html"title="struct alloc::string::String">String</a></h4></section></summary><divclass='docblock'><p>Converts the given value to a <code>String</code>. <ahref="https://doc.rust-lang.org/1.64.0/alloc/string/trait.ToString.html#tymethod.to_string">Read more</a></p>
</div></details></div></details><detailsclass="rustdoc-toggle implementors-toggle"><summary><sectionid="impl-TryFrom%3CU%3E-for-Uuid"class="impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://doc.rust-lang.org/1.64.0/src/core/convert/mod.rs.html#598">source</a></span><ahref="#impl-TryFrom%3CU%3E-for-Uuid"class="anchor"></a><h3class="code-header in-band">impl<T, U><aclass="trait"href="https://doc.rust-lang.org/1.64.0/core/convert/trait.TryFrom.html"title="trait core::convert::TryFrom">TryFrom</a><U> for T <spanclass="where fmt-newline">where<br> U: <aclass="trait"href="https://doc.rust-lang.org/1.64.0/core/convert/trait.Into.html"title="trait core::convert::Into">Into</a><T>, </span></h3></section></summary><divclass="impl-items"><detailsclass="rustdoc-toggle"open><summary><sectionid="associatedtype.Error-1"class="associatedtype trait-impl has-srclink"><ahref="#associatedtype.Error-1"class="anchor"></a><h4class="code-header">type <ahref="https://doc.rust-lang.org/1.64.0/core/convert/trait.TryFrom.html#associatedtype.Error"class="associatedtype">Error</a> = <aclass="enum"href="https://doc.rust-lang.org/1.64.0/core/convert/enum.Infallible.html"title="enum core::convert::Infallible">Infallible</a></h4></section></summary><divclass='docblock'><p>The type returned in the event of a conversion error.</p>
</div></details><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.try_from-1"class="method trait-impl has-srclink"><spanclass="rightside"><spanclass="since"title="const unstable">const: <ahref="https://github.com/rust-lang/rust/issues/88674"title="Tracking issue for const_convert">unstable</a></span> · <aclass="srclink"href="https://doc.rust-lang.org/1.64.0/src/core/convert/mod.rs.html#604">source</a></span><ahref="#method.try_from-1"class="anchor"></a><h4class="code-header">fn <ahref="https://doc.rust-lang.org/1.64.0/core/convert/trait.TryFrom.html#tymethod.try_from"class="fnname">try_from</a>(value: U) -><aclass="enum"href="https://doc.rust-lang.org/1.64.0/core/result/enum.Result.html"title="enum core::result::Result">Result</a><T, <T as <aclass="trait"href="https://doc.rust-lang.org/1.64.0/core/convert/trait.TryFrom.html"title="trait core::convert::TryFrom">TryFrom</a><U>>::<aclass="associatedtype"href="https://doc.rust-lang.org/1.64.0/core/convert/trait.TryFrom.html#associatedtype.Error"title="type core::convert::TryFrom::Error">Error</a>></h4></section></summary><divclass='docblock'><p>Performs the conversion.</p>
</div></details></div></details><detailsclass="rustdoc-toggle implementors-toggle"><summary><sectionid="impl-TryInto%3CU%3E-for-Uuid"class="impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://doc.rust-lang.org/1.64.0/src/core/convert/mod.rs.html#583">source</a></span><ahref="#impl-TryInto%3CU%3E-for-Uuid"class="anchor"></a><h3class="code-header in-band">impl<T, U><aclass="trait"href="https://doc.rust-lang.org/1.64.0/core/convert/trait.TryInto.html"title="trait core::convert::TryInto">TryInto</a><U> for T <spanclass="where fmt-newline">where<br> U: <aclass="trait"href="https://doc.rust-lang.org/1.64.0/core/convert/trait.TryFrom.html"title="trait core::convert::TryFrom">TryFrom</a><T>, </span></h3></section></summary><divclass="impl-items"><detailsclass="rustdoc-toggle"open><summary><sectionid="associatedtype.Error-2"class="associatedtype trait-impl has-srclink"><ahref="#associatedtype.Error-2"class="anchor"></a><h4class="code-header">type <ahref="https://doc.rust-lang.org/1.64.0/core/convert/trait.TryInto.html#associatedtype.Error"class="associatedtype">Error</a> = <U as <aclass="trait"href="https://doc.rust-lang.org/1.64.0/core/convert/trait.TryFrom.html"title="trait core::convert::TryFrom">TryFrom</a><T>>::<aclass="associatedtype"href="https://doc.rust-lang.org/1.64.0/core/convert/trait.TryFrom.html#associatedtype.Error"title="type core::convert::TryFrom::Error">Error</a></h4></section></summary><divclass='docblock'><p>The type returned in the event of a conversion error.</p>
</div></details><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.try_into"class="method trait-impl has-srclink"><spanclass="rightside"><spanclass="since"title="const unstable">const: <ahref="https://github.com/rust-lang/rust/issues/88674"title="Tracking issue for const_convert">unstable</a></span> · <aclass="srclink"href="https://doc.rust-lang.org/1.64.0/src/core/convert/mod.rs.html#589">source</a></span><ahref="#method.try_into"class="anchor"></a><h4class="code-header">fn <ahref="https://doc.rust-lang.org/1.64.0/core/convert/trait.TryInto.html#tymethod.try_into"class="fnname">try_into</a>(self) -><aclass="enum"href="https://doc.rust-lang.org/1.64.0/core/result/enum.Result.html"title="enum core::result::Result">Result</a><U, <U as <aclass="trait"href="https://doc.rust-lang.org/1.64.0/core/convert/trait.TryFrom.html"title="trait core::convert::TryFrom">TryFrom</a><T>>::<aclass="associatedtype"href="https://doc.rust-lang.org/1.64.0/core/convert/trait.TryFrom.html#associatedtype.Error"title="type core::convert::TryFrom::Error">Error</a>></h4></section></summary><divclass='docblock'><p>Performs the conversion.</p>
</div></details><detailsclass="rustdoc-toggle method-toggle"open><summary><sectionid="method.with_current_subscriber"class="method trait-impl has-srclink"><spanclass="rightside"><aclass="srclink"href="https://docs.rs/tracing/0.1.37/src/tracing/instrument.rs.html#221">source</a></span><ahref="#method.with_current_subscriber"class="anchor"></a><h4class="code-header">fn <ahref="https://docs.rs/tracing/0.1.37/tracing/instrument/trait.WithSubscriber.html#method.with_current_subscriber"class="fnname">with_current_subscriber</a>(self) -><aclass="struct"href="https://docs.rs/tracing/0.1.37/tracing/instrument/struct.WithDispatch.html"title="struct tracing::instrument::WithDispatch">WithDispatch</a><Self></h4></section></summary><divclass='docblock'><p>Attaches the current <ahref="https://docs.rs/tracing/0.1.37/tracing/dispatcher/index.html#setting-the-default-subscriber">default</a><ahref="https://docs.rs/tracing-core/0.1.22/tracing_core/subscriber/trait.Subscriber.html"><code>Subscriber</code></a> to this type, returning a