mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-26 05:29:38 +01:00
46 lines
94 KiB
HTML
46 lines
94 KiB
HTML
|
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta name="generator" content="rustdoc"><meta name="description" content="Defines little-endian serialization."><title>LittleEndian in byteorder - Rust</title><script>if(window.location.protocol!=="file:")document.head.insertAdjacentHTML("beforeend","SourceSerif4-Regular-46f98efaafac5295.ttf.woff2,FiraSans-Regular-018c141bf0843ffd.woff2,FiraSans-Medium-8f9a781e4970d388.woff2,SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2,SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2".split(",").map(f=>`<link rel="preload" as="font" type="font/woff2" crossorigin href="../static.files/${f}">`).join(""))</script><link rel="stylesheet" href="../static.files/normalize-76eba96aa4d2e634.css"><link rel="stylesheet" href="../static.files/rustdoc-492a78a4a87dcc01.css"><meta name="rustdoc-vars" data-root-path="../" data-static-root-path="../static.files/" data-current-crate="byteorder" data-themes="" data-resource-suffix="" data-rustdoc-version="1.82.0 (f6e511eec 2024-10-15)" data-channel="1.82.0" data-search-js="search-a99f1315e7cc5121.js" data-settings-js="settings-4313503d2e1961c2.js" ><script src="../static.files/storage-118b08c4c78b968e.js"></script><script defer src="sidebar-items.js"></script><script defer src="../static.files/main-921df33f47b8780c.js"></script><noscript><link rel="stylesheet" href="../static.files/noscript-3b12f09e550e0385.css"></noscript><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 enum"><!--[if lte IE 11]><div class="warning">This old browser is unsupported and will most likely display funky things.</div><![endif]--><nav class="mobile-topbar"><button class="sidebar-menu-toggle" title="show sidebar"></button></nav><nav class="sidebar"><div class="sidebar-crate"><h2><a href="../byteorder/index.html">byteorder</a><span class="version">1.5.0</span></h2></div><h2 class="location"><a href="#">Little<wbr>Endian</a></h2><div class="sidebar-elems"><section><h3><a href="#trait-implementations">Trait Implementations</a></h3><ul class="block trait-implementation"><li><a href="#impl-ByteOrder-for-LittleEndian">ByteOrder</a></li><li><a href="#impl-Clone-for-LittleEndian">Clone</a></li><li><a href="#impl-Copy-for-LittleEndian">Copy</a></li><li><a href="#impl-Debug-for-LittleEndian">Debug</a></li><li><a href="#impl-Default-for-LittleEndian">Default</a></li><li><a href="#impl-Eq-for-LittleEndian">Eq</a></li><li><a href="#impl-Hash-for-LittleEndian">Hash</a></li><li><a href="#impl-Ord-for-LittleEndian">Ord</a></li><li><a href="#impl-PartialEq-for-LittleEndian">PartialEq</a></li><li><a href="#impl-PartialOrd-for-LittleEndian">PartialOrd</a></li><li><a href="#impl-StructuralPartialEq-for-LittleEndian">StructuralPartialEq</a></li></ul><h3><a href="#synthetic-implementations">Auto Trait Implementations</a></h3><ul class="block synthetic-implementation"><li><a href="#impl-Freeze-for-LittleEndian">Freeze</a></li><li><a href="#impl-RefUnwindSafe-for-LittleEndian">RefUnwindSafe</a></li><li><a href="#impl-Send-for-LittleEndian">Send</a></li><li><a href="#impl-Sync-for-LittleEndian">Sync</a></li><li><a href="#impl-Unpin-for-LittleEndian">Unpin</a></li><li><a href="#impl-UnwindSafe-for-LittleEndian">UnwindSafe</a></li></ul><h3><a href="#blanket-implementations">Blanket Implementations</a></h3><ul class="block blanket-implementation"><li><a href="#impl-Any-for-T">Any</a></li><li><a href="#impl-Borrow%3CT%3E-for-T">Borrow<T></a></li><li><a href="#impl-BorrowMut%3CT%3E-for-T">BorrowMut<T></a></li><li><a href="#impl-CloneToUninit-for-T">CloneToUninit</a></li><li><a href="#impl-From%3CT%3E-for-T">From<T></a></li><li><a href="#impl-Into%3CU%3E-for-T">Into<U></a></li><li><a href="#impl-TryFrom%3CU%3E-for-T">TryFrom<U></a></li><li><a href="#impl-TryInto%3CU%3E-for-T">TryInto<U></a></li></ul></section><h2>
|
||
|
<p>Note that this type has no value constructor. It is used purely at the
|
||
|
type level.</p>
|
||
|
<h2 id="examples"><a class="doc-anchor" href="#examples">§</a>Examples</h2>
|
||
|
<p>Write and read <code>u32</code> numbers in little endian order:</p>
|
||
|
|
||
|
<div class="example-wrap"><pre class="rust rust-example-rendered"><code><span class="kw">use </span>byteorder::{ByteOrder, LittleEndian};
|
||
|
|
||
|
<span class="kw">let </span><span class="kw-2">mut </span>buf = [<span class="number">0</span>; <span class="number">4</span>];
|
||
|
LittleEndian::write_u32(<span class="kw-2">&mut </span>buf, <span class="number">1_000_000</span>);
|
||
|
<span class="macro">assert_eq!</span>(<span class="number">1_000_000</span>, LittleEndian::read_u32(<span class="kw-2">&</span>buf));</code></pre></div>
|
||
|
</div></details><h2 id="trait-implementations" class="section-header">Trait Implementations<a href="#trait-implementations" class="anchor">§</a></h2><div id="trait-implementations-list"><details class="toggle implementors-toggle" open><summary><section id="impl-ByteOrder-for-LittleEndian" class="impl"><a class="src rightside" href="../src/byteorder/lib.rs.html#2126-2302">source</a><a href="#impl-ByteOrder-for-LittleEndian" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.ByteOrder.html" title="trait byteorder::ByteOrder">ByteOrder</a> for <a class="enum" href="enum.LittleEndian.html" title="enum byteorder::LittleEndian">LittleEndian</a></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.read_u16" class="method trait-impl"><a class="src rightside" href="../src/byteorder/lib.rs.html#2128-2130">source</a><a href="#method.read_u16" class="anchor">§</a><h4 class="code-header">fn <a href="trait.ByteOrder.html#tymethod.read_u16" class="fn">read_u16</a>(buf: &[<a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.u8.html">u8</a>]) -> <a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.u16.html">u16</a></h4></section></summary><div class='docblock'>Reads an unsigned 16 bit integer from <code>buf</code>. <a href="trait.ByteOrder.html#tymethod.read_u16">Read more</a></div></details><details class="toggle method-toggle" open><summary><section id="method.read_u32" class="method trait-impl"><a class="src rightside" href="../src/byteorder/lib.rs.html#2133-2135">source</a><a href="#method.read_u32" class="anchor">§</a><h4 class="code-header">fn <a href="trait.ByteOrder.html#tymethod.read_u32" class="fn">read_u32</a>(buf: &[<a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.u8.html">u8</a>]) -> <a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.u32.html">u32</a></h4></section></summary><div class='docblock'>Reads an unsigned 32 bit integer from <code>buf</code>. <a href="trait.ByteOrder.html#tymethod.read_u32">Read more</a></div></details><details class="toggle method-toggle" open><summary><section id="method.read_u64" class="method trait-impl"><a class="src rightside" href="../src/byteorder/lib.rs.html#2138-2140">source</a><a href="#method.read_u64" class="anchor">§</a><h4 class="code-header">fn <a href="trait.ByteOrder.html#tymethod.read_u64" class="fn">read_u64</a>(buf: &[<a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.u8.html">u8</a>]) -> <a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.u64.html">u64</a></h4></section></summary><div class='docblock'>Reads an unsigned 64 bit integer from <code>buf</code>. <a href="trait.ByteOrder.html#tymethod.read_u64">Read more</a></div></details><details class="toggle method-toggle" open><summary><section id="method.read_u128" class="method trait-impl"><a class="src rightside" href="../src/byteorder/lib.rs.html#2143-2145">source</a><a href="#method.read_u128" class="anchor">§</a><h4 class="code-header">fn <a href="trait.ByteOrder.html#tymethod.read_u128" class="fn">read_u128</a>(buf: &[<a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.u8.html">u8</a>]) -> <a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.u128.html">u128</a></h4></section></summary><div class='docblock'>Reads an unsigned 128 bit integer from <code>buf</code>. <a href="trait.ByteOrder.html#tymethod.read_u128">Read more</a></div></details><details class="toggle method-toggle" open><summary><section id="method.read_uint" class="method trait-impl"><a class="src rightside" href="../src/byteorder/lib.rs.html#2148-2153">source</a><a href="#method.read_uint" class="anchor">§</a><h4 class="code-header">fn <a href="trait.ByteOrder.html#tymethod.read_uint" class="fn">read_uint</a>(buf: &[<a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.u8.html">u8</a>], nbytes: <a class="primitive" href="htt
|
||
|
endianness. <a href="trait.ByteOrder.html#tymethod.from_slice_u16">Read more</a></div></details><details class="toggle method-toggle" open><summary><section id="method.from_slice_u32" class="method trait-impl"><a class="src rightside" href="../src/byteorder/lib.rs.html#2253-2259">source</a><a href="#method.from_slice_u32" class="anchor">§</a><h4 class="code-header">fn <a href="trait.ByteOrder.html#tymethod.from_slice_u32" class="fn">from_slice_u32</a>(numbers: &mut [<a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.u32.html">u32</a>])</h4></section></summary><div class='docblock'>Converts the given slice of unsigned 32 bit integers to a particular
|
||
|
endianness. <a href="trait.ByteOrder.html#tymethod.from_slice_u32">Read more</a></div></details><details class="toggle method-toggle" open><summary><section id="method.from_slice_u64" class="method trait-impl"><a class="src rightside" href="../src/byteorder/lib.rs.html#2262-2268">source</a><a href="#method.from_slice_u64" class="anchor">§</a><h4 class="code-header">fn <a href="trait.ByteOrder.html#tymethod.from_slice_u64" class="fn">from_slice_u64</a>(numbers: &mut [<a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.u64.html">u64</a>])</h4></section></summary><div class='docblock'>Converts the given slice of unsigned 64 bit integers to a particular
|
||
|
endianness. <a href="trait.ByteOrder.html#tymethod.from_slice_u64">Read more</a></div></details><details class="toggle method-toggle" open><summary><section id="method.from_slice_u128" class="method trait-impl"><a class="src rightside" href="../src/byteorder/lib.rs.html#2271-2277">source</a><a href="#method.from_slice_u128" class="anchor">§</a><h4 class="code-header">fn <a href="trait.ByteOrder.html#tymethod.from_slice_u128" class="fn">from_slice_u128</a>(numbers: &mut [<a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.u128.html">u128</a>])</h4></section></summary><div class='docblock'>Converts the given slice of unsigned 128 bit integers to a particular
|
||
|
endianness. <a href="trait.ByteOrder.html#tymethod.from_slice_u128">Read more</a></div></details><details class="toggle method-toggle" open><summary><section id="method.from_slice_f32" class="method trait-impl"><a class="src rightside" href="../src/byteorder/lib.rs.html#2280-2289">source</a><a href="#method.from_slice_f32" class="anchor">§</a><h4 class="code-header">fn <a href="trait.ByteOrder.html#tymethod.from_slice_f32" class="fn">from_slice_f32</a>(numbers: &mut [<a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.f32.html">f32</a>])</h4></section></summary><div class='docblock'>Converts the given slice of IEEE754 single-precision (4 bytes) floating
|
||
|
point numbers to a particular endianness. <a href="trait.ByteOrder.html#tymethod.from_slice_f32">Read more</a></div></details><details class="toggle method-toggle" open><summary><section id="method.from_slice_f64" class="method trait-impl"><a class="src rightside" href="../src/byteorder/lib.rs.html#2292-2301">source</a><a href="#method.from_slice_f64" class="anchor">§</a><h4 class="code-header">fn <a href="trait.ByteOrder.html#tymethod.from_slice_f64" class="fn">from_slice_f64</a>(numbers: &mut [<a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.f64.html">f64</a>])</h4></section></summary><div class='docblock'>Converts the given slice of IEEE754 double-precision (8 bytes) floating
|
||
|
point numbers to a particular endianness. <a href="trait.ByteOrder.html#tymethod.from_slice_f64">Read more</a></div></details><details class="toggle method-toggle" open><summary><section id="method.read_u24" class="method trait-impl"><a class="src rightside" href="../src/byteorder/lib.rs.html#248-250">source</a><a href="#method.read_u24" class="anchor">§</a><h4 class="code-header">fn <a href="trait.ByteOrder.html#method.read_u24" class="fn">read_u24</a>(buf: &[<a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.u8.html">u8</a>]) -> <a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.u32.html">u32</a></h4></section></summary><div class='docblock'>Reads an unsigned 24 bit integer from <code>buf</code>, stored in u32. <a href="trait.ByteOrder.html#method.read_u24">Read more</a></div></details><details class="toggle method-toggle" open><summary><section id="method.read_u48" class="method trait-impl"><a class="src rightside" href="../src/byteorder/lib.rs.html#288-290">source</a><a href="#method.read_u48" class="anchor">§</a><h4 class="code-header">fn <a href="trait.ByteOrder.html#method.read_u48" class="fn">read_u48</a>(buf: &[<a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.u8.html">u8</a>]) -> <a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.u64.html">u64</a></h4></section></summary><div class='docblock'>Reads an unsigned 48 bit integer from <code>buf</code>, stored in u64. <a href="trait.ByteOrder.html#method.read_u48">Read more</a></div></details><details class="toggle method-toggle" open><summary><section id="method.write_u24" class="method trait-impl"><a class="src rightside" href="../src/byteorder/lib.rs.html#406-408">source</a><a href="#method.write_u24" class="anchor">§</a><h4 class="code-header">fn <a href="trait.ByteOrder.html#method.write_u24" class="fn">write_u24</a>(buf: &mut [<a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.u8.html">u8</a>], n: <a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.u32.html">u32</a>)</h4></section></summary><div class='docblock'>Writes an unsigned 24 bit integer <code>n</code> to <code>buf</code>, stored in u32. <a href="trait.ByteOrder.html#method.write_u24">Read more</a></div></details><details class="toggle method-toggle" open><summary><section id="method.write_u48" class="method trait-impl"><a class="src rightside" href="../src/byteorder/lib.rs.html#446-448">source</a><a href="#method.write_u48" class="anchor">§</a><h4 class="code-header">fn <a href="trait.ByteOrder.html#method.write_u48" class="fn">write_u48</a>(buf: &mut [<a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.u8.html">u8</a>], n: <a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.u64.html">u64</a>)</h4></section></summary><div class='docblock'>Writes an unsigned 48 bit integer <code>n</code> to <code>buf</code>, stored in u64. <a href="trait.ByteOrder.html#method.write_u48">Read more</a></div></details><details class="toggle method-toggle" open><summary><section id="method.read_i16" class="method trait-impl"><a class="src rightside" href="../src/byteorder/lib.rs.html#546-548">source</a><a href="#method.read_i16" class="anchor">§</a><h4 class="code-header">fn <a href="trait.ByteOrder.html#method.read_i16" class="fn">read_i16</a>(buf: &[<a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.u8.html">u8</a>]) -> <a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.i16.html">i16</a></h4></section></summary><div class='docblock'>Reads a signed 16 bit integer from <code>buf</code>. <a href="trait.ByteOrder.html#method.read_i16">Read more</a></div></details><details class="toggle method-toggle" open><summary><section id="method.read_i24" class="method trait-impl"><a class="src rightside" href="../src/byteorder/lib.rs.html#568-570">source</a><a href="#method.read_i24" class="anchor">§</a><h4 class="code-header">fn <a href="trait.ByteOrder.html#method.r
|
||
|
<code>src</code> into <code>dst</code>. <a href="trait.ByteOrder.html#method.read_f32_into">Read more</a></div></details><details class="toggle method-toggle" open><summary><section id="method.read_f32_into_unchecked" class="method trait-impl"><a class="src rightside" href="../src/byteorder/lib.rs.html#1242-1244">source</a><a href="#method.read_f32_into_unchecked" class="anchor">§</a><h4 class="code-header">fn <a href="trait.ByteOrder.html#method.read_f32_into_unchecked" class="fn">read_f32_into_unchecked</a>(src: &[<a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.u8.html">u8</a>], dst: &mut [<a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.f32.html">f32</a>])</h4></section></summary><span class="item-info"><div class="stab deprecated"><span class="emoji">👎</span><span>Deprecated since 1.3.0: please use <code>read_f32_into</code> instead</span></div></span><div class='docblock'><strong>DEPRECATED</strong>. <a href="trait.ByteOrder.html#method.read_f32_into_unchecked">Read more</a></div></details><details class="toggle method-toggle" open><summary><section id="method.read_f64_into" class="method trait-impl"><a class="src rightside" href="../src/byteorder/lib.rs.html#1269-1275">source</a><a href="#method.read_f64_into" class="anchor">§</a><h4 class="code-header">fn <a href="trait.ByteOrder.html#method.read_f64_into" class="fn">read_f64_into</a>(src: &[<a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.u8.html">u8</a>], dst: &mut [<a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.f64.html">f64</a>])</h4></section></summary><div class='docblock'>Reads IEEE754 single-precision (4 bytes) floating point numbers from
|
||
|
<code>src</code> into <code>dst</code>. <a href="trait.ByteOrder.html#method.read_f64_into">Read more</a></div></details><details class="toggle method-toggle" open><summary><section id="method.read_f64_into_unchecked" class="method trait-impl"><a class="src rightside" href="../src/byteorder/lib.rs.html#1305-1307">source</a><a href="#method.read_f64_into_unchecked" class="anchor">§</a><h4 class="code-header">fn <a href="trait.ByteOrder.html#method.read_f64_into_unchecked" class="fn">read_f64_into_unchecked</a>(src: &[<a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.u8.html">u8</a>], dst: &mut [<a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.f64.html">f64</a>])</h4></section></summary><span class="item-info"><div class="stab deprecated"><span class="emoji">👎</span><span>Deprecated since 1.3.0: please use <code>read_f64_into</code> instead</span></div></span><div class='docblock'><strong>DEPRECATED</strong>. <a href="trait.ByteOrder.html#method.read_f64_into_unchecked">Read more</a></div></details><details class="toggle method-toggle" open><summary><section id="method.write_i8_into" class="method trait-impl"><a class="src rightside" href="../src/byteorder/lib.rs.html#1428-1433">source</a><a href="#method.write_i8_into" class="anchor">§</a><h4 class="code-header">fn <a href="trait.ByteOrder.html#method.write_i8_into" class="fn">write_i8_into</a>(src: &[<a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.i8.html">i8</a>], dst: &mut [<a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.u8.html">u8</a>])</h4></section></summary><div class='docblock'>Writes signed 8 bit integers from <code>src</code> into <code>dst</code>. <a href="trait.ByteOrder.html#method.write_i8_into">Read more</a></div></details><details class="toggle method-toggle" open><summary><section id="method.write_i16_into" class="method trait-impl"><a class="src rightside" href="../src/byteorder/lib.rs.html#1456-1461">source</a><a href="#method.write_i16_into" class="anchor">§</a><h4 class="code-header">fn <a href="trait.ByteOrder.html#method.write_i16_into" class="fn">write_i16_into</a>(src: &[<a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.i16.html">i16</a>], dst: &mut [<a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.u8.html">u8</a>])</h4></section></summary><div class='docblock'>Writes signed 16 bit integers from <code>src</code> into <code>dst</code>. <a href="trait.ByteOrder.html#method.write_i16_into">Read more</a></div></details><details class="toggle method-toggle" open><summary><section id="method.write_i32_into" class="method trait-impl"><a class="src rightside" href="../src/byteorder/lib.rs.html#1484-1489">source</a><a href="#method.write_i32_into" class="anchor">§</a><h4 class="code-header">fn <a href="trait.ByteOrder.html#method.write_i32_into" class="fn">write_i32_into</a>(src: &[<a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.i32.html">i32</a>], dst: &mut [<a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.u8.html">u8</a>])</h4></section></summary><div class='docblock'>Writes signed 32 bit integers from <code>src</code> into <code>dst</code>. <a href="trait.ByteOrder.html#method.write_i32_into">Read more</a></div></details><details class="toggle method-toggle" open><summary><section id="method.write_i64_into" class="method trait-impl"><a class="src rightside" href="../src/byteorder/lib.rs.html#1512-1517">source</a><a href="#method.write_i64_into" class="anchor">§</a><h4 class="code-header">fn <a href="trait.ByteOrder.html#method.write_i64_into" class="fn">write_i64_into</a>(src: &[<a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.i64.html">i64</a>], dst: &mut [<a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.u8.html">u8</a>])</h4></section></summary><div class='docblock'>Writes signed 64 bit integers from <code>src</code> into <code>dst</code>. <a hre
|
||
|
<code>src</code> into <code>dst</code>. <a href="trait.ByteOrder.html#method.write_f32_into">Read more</a></div></details><details class="toggle method-toggle" open><summary><section id="method.write_f64_into" class="method trait-impl"><a class="src rightside" href="../src/byteorder/lib.rs.html#1598-1603">source</a><a href="#method.write_f64_into" class="anchor">§</a><h4 class="code-header">fn <a href="trait.ByteOrder.html#method.write_f64_into" class="fn">write_f64_into</a>(src: &[<a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.f64.html">f64</a>], dst: &mut [<a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.u8.html">u8</a>])</h4></section></summary><div class='docblock'>Writes IEEE754 double-precision (8 bytes) floating point numbers from
|
||
|
<code>src</code> into <code>dst</code>. <a href="trait.ByteOrder.html#method.write_f64_into">Read more</a></div></details><details class="toggle method-toggle" open><summary><section id="method.from_slice_i16" class="method trait-impl"><a class="src rightside" href="../src/byteorder/lib.rs.html#1699-1704">source</a><a href="#method.from_slice_i16" class="anchor">§</a><h4 class="code-header">fn <a href="trait.ByteOrder.html#method.from_slice_i16" class="fn">from_slice_i16</a>(src: &mut [<a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.i16.html">i16</a>])</h4></section></summary><div class='docblock'>Converts the given slice of signed 16 bit integers to a particular
|
||
|
endianness. <a href="trait.ByteOrder.html#method.from_slice_i16">Read more</a></div></details><details class="toggle method-toggle" open><summary><section id="method.from_slice_i32" class="method trait-impl"><a class="src rightside" href="../src/byteorder/lib.rs.html#1724-1729">source</a><a href="#method.from_slice_i32" class="anchor">§</a><h4 class="code-header">fn <a href="trait.ByteOrder.html#method.from_slice_i32" class="fn">from_slice_i32</a>(src: &mut [<a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.i32.html">i32</a>])</h4></section></summary><div class='docblock'>Converts the given slice of signed 32 bit integers to a particular
|
||
|
endianness. <a href="trait.ByteOrder.html#method.from_slice_i32">Read more</a></div></details><details class="toggle method-toggle" open><summary><section id="method.from_slice_i64" class="method trait-impl"><a class="src rightside" href="../src/byteorder/lib.rs.html#1749-1754">source</a><a href="#method.from_slice_i64" class="anchor">§</a><h4 class="code-header">fn <a href="trait.ByteOrder.html#method.from_slice_i64" class="fn">from_slice_i64</a>(src: &mut [<a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.i64.html">i64</a>])</h4></section></summary><div class='docblock'>Converts the given slice of signed 64 bit integers to a particular
|
||
|
endianness. <a href="trait.ByteOrder.html#method.from_slice_i64">Read more</a></div></details><details class="toggle method-toggle" open><summary><section id="method.from_slice_i128" class="method trait-impl"><a class="src rightside" href="../src/byteorder/lib.rs.html#1774-1779">source</a><a href="#method.from_slice_i128" class="anchor">§</a><h4 class="code-header">fn <a href="trait.ByteOrder.html#method.from_slice_i128" class="fn">from_slice_i128</a>(src: &mut [<a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.i128.html">i128</a>])</h4></section></summary><div class='docblock'>Converts the given slice of signed 128 bit integers to a particular
|
||
|
endianness. <a href="trait.ByteOrder.html#method.from_slice_i128">Read more</a></div></details></div></details><details class="toggle implementors-toggle" open><summary><section id="impl-Clone-for-LittleEndian" class="impl"><a class="src rightside" href="../src/byteorder/lib.rs.html#1842">source</a><a href="#impl-Clone-for-LittleEndian" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="https://doc.rust-lang.org/1.82.0/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> for <a class="enum" href="enum.LittleEndian.html" title="enum byteorder::LittleEndian">LittleEndian</a></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.clone" class="method trait-impl"><a class="src rightside" href="../src/byteorder/lib.rs.html#1842">source</a><a href="#method.clone" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.82.0/core/clone/trait.Clone.html#tymethod.clone" class="fn">clone</a>(&self) -> <a class="enum" href="enum.LittleEndian.html" title="enum byteorder::LittleEndian">LittleEndian</a></h4></section></summary><div class='docblock'>Returns a copy of the value. <a href="https://doc.rust-lang.org/1.82.0/core/clone/trait.Clone.html#tymethod.clone">Read more</a></div></details><details class="toggle method-toggle" open><summary><section id="method.clone_from" class="method trait-impl"><span class="rightside"><span class="since" title="Stable since Rust version 1.0.0">1.0.0</span> · <a class="src" href="https://doc.rust-lang.org/1.82.0/src/core/clone.rs.html#174">source</a></span><a href="#method.clone_from" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.82.0/core/clone/trait.Clone.html#method.clone_from" class="fn">clone_from</a>(&mut self, source: &Self)</h4></section></summary><div class='docblock'>Performs copy-assignment from <code>source</code>. <a href="https://doc.rust-lang.org/1.82.0/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-LittleEndian" class="impl"><a class="src rightside" href="../src/byteorder/lib.rs.html#1842">source</a><a href="#impl-Debug-for-LittleEndian" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="https://doc.rust-lang.org/1.82.0/core/fmt/trait.Debug.html" title="trait core::fmt::Debug">Debug</a> for <a class="enum" href="enum.LittleEndian.html" title="enum byteorder::LittleEndian">LittleEndian</a></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.fmt" class="method trait-impl"><a class="src rightside" href="../src/byteorder/lib.rs.html#1842">source</a><a href="#method.fmt" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.82.0/core/fmt/trait.Debug.html#tymethod.fmt" class="fn">fmt</a>(&self, f: &mut <a class="struct" href="https://doc.rust-lang.org/1.82.0/core/fmt/struct.Formatter.html" title="struct core::fmt::Formatter">Formatter</a><'_>) -> <a class="type" href="https://doc.rust-lang.org/1.82.0/core/fmt/type.Result.html" title="type core::fmt::Result">Result</a></h4></section></summary><div class='docblock'>Formats the value using the given formatter. <a href="https://doc.rust-lang.org/1.82.0/core/fmt/trait.Debug.html#tymethod.fmt">Read more</a></div></details></div></details><details class="toggle implementors-toggle" open><summary><section id="impl-Default-for-LittleEndian" class="impl"><a class="src rightside" href="../src/byteorder/lib.rs.html#1845-1849">source</a><a href="#impl-Default-for-LittleEndian" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="https://doc.rust-lang.org/1.82.0/core/default/trait.Default.html" title="trait core::default::Default">Default</a> for <a class="enum" href="enum.LittleEndian.html" title="enum byteorder::LittleEndian">LittleEndian</a></h3></section></summary><div class="imp
|
||
|
H: <a class="trait" href="https://doc.rust-lang.org/1.82.0/core/hash/trait.Hasher.html" title="trait core::hash::Hasher">Hasher</a>,
|
||
|
Self: <a class="trait" href="https://doc.rust-lang.org/1.82.0/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,</div></h4></section></summary><div class='docblock'>Feeds a slice of this type into the given <a href="https://doc.rust-lang.org/1.82.0/core/hash/trait.Hasher.html" title="trait core::hash::Hasher"><code>Hasher</code></a>. <a href="https://doc.rust-lang.org/1.82.0/core/hash/trait.Hash.html#method.hash_slice">Read more</a></div></details></div></details><details class="toggle implementors-toggle" open><summary><section id="impl-Ord-for-LittleEndian" class="impl"><a class="src rightside" href="../src/byteorder/lib.rs.html#1842">source</a><a href="#impl-Ord-for-LittleEndian" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="https://doc.rust-lang.org/1.82.0/core/cmp/trait.Ord.html" title="trait core::cmp::Ord">Ord</a> for <a class="enum" href="enum.LittleEndian.html" title="enum byteorder::LittleEndian">LittleEndian</a></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.cmp" class="method trait-impl"><a class="src rightside" href="../src/byteorder/lib.rs.html#1842">source</a><a href="#method.cmp" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.82.0/core/cmp/trait.Ord.html#tymethod.cmp" class="fn">cmp</a>(&self, other: &<a class="enum" href="enum.LittleEndian.html" title="enum byteorder::LittleEndian">LittleEndian</a>) -> <a class="enum" href="https://doc.rust-lang.org/1.82.0/core/cmp/enum.Ordering.html" title="enum core::cmp::Ordering">Ordering</a></h4></section></summary><div class='docblock'>This method returns an <a href="https://doc.rust-lang.org/1.82.0/core/cmp/enum.Ordering.html" title="enum core::cmp::Ordering"><code>Ordering</code></a> between <code>self</code> and <code>other</code>. <a href="https://doc.rust-lang.org/1.82.0/core/cmp/trait.Ord.html#tymethod.cmp">Read more</a></div></details><details class="toggle method-toggle" open><summary><section id="method.max" class="method trait-impl"><span class="rightside"><span class="since" title="Stable since Rust version 1.21.0">1.21.0</span> · <a class="src" href="https://doc.rust-lang.org/1.82.0/src/core/cmp.rs.html#854-856">source</a></span><a href="#method.max" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.82.0/core/cmp/trait.Ord.html#method.max" class="fn">max</a>(self, other: Self) -> Self<div class="where">where
|
||
|
Self: <a class="trait" href="https://doc.rust-lang.org/1.82.0/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,</div></h4></section></summary><div class='docblock'>Compares and returns the maximum of two values. <a href="https://doc.rust-lang.org/1.82.0/core/cmp/trait.Ord.html#method.max">Read more</a></div></details><details class="toggle method-toggle" open><summary><section id="method.min" class="method trait-impl"><span class="rightside"><span class="since" title="Stable since Rust version 1.21.0">1.21.0</span> · <a class="src" href="https://doc.rust-lang.org/1.82.0/src/core/cmp.rs.html#875-877">source</a></span><a href="#method.min" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.82.0/core/cmp/trait.Ord.html#method.min" class="fn">min</a>(self, other: Self) -> Self<div class="where">where
|
||
|
Self: <a class="trait" href="https://doc.rust-lang.org/1.82.0/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,</div></h4></section></summary><div class='docblock'>Compares and returns the minimum of two values. <a href="https://doc.rust-lang.org/1.82.0/core/cmp/trait.Ord.html#method.min">Read more</a></div></details><details class="toggle method-toggle" open><summary><section id="method.clamp" class="method trait-impl"><span class="rightside"><span class="since" title="Stable since Rust version 1.50.0">1.50.0</span> · <a class="src" href="https://doc.rust-lang.org/1.82.0/src/core/cmp.rs.html#901-904">source</a></span><a href="#method.clamp" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.82.0/core/cmp/trait.Ord.html#method.clamp" class="fn">clamp</a>(self, min: Self, max: Self) -> Self<div class="where">where
|
||
|
Self: <a class="trait" href="https://doc.rust-lang.org/1.82.0/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a> + <a class="trait" href="https://doc.rust-lang.org/1.82.0/core/cmp/trait.PartialOrd.html" title="trait core::cmp::PartialOrd">PartialOrd</a>,</div></h4></section></summary><div class='docblock'>Restrict a value to a certain interval. <a href="https://doc.rust-lang.org/1.82.0/core/cmp/trait.Ord.html#method.clamp">Read more</a></div></details></div></details><details class="toggle implementors-toggle" open><summary><section id="impl-PartialEq-for-LittleEndian" class="impl"><a class="src rightside" href="../src/byteorder/lib.rs.html#1842">source</a><a href="#impl-PartialEq-for-LittleEndian" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="https://doc.rust-lang.org/1.82.0/core/cmp/trait.PartialEq.html" title="trait core::cmp::PartialEq">PartialEq</a> for <a class="enum" href="enum.LittleEndian.html" title="enum byteorder::LittleEndian">LittleEndian</a></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.eq" class="method trait-impl"><a class="src rightside" href="../src/byteorder/lib.rs.html#1842">source</a><a href="#method.eq" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.82.0/core/cmp/trait.PartialEq.html#tymethod.eq" class="fn">eq</a>(&self, other: &<a class="enum" href="enum.LittleEndian.html" title="enum byteorder::LittleEndian">LittleEndian</a>) -> <a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.bool.html">bool</a></h4></section></summary><div class='docblock'>Tests for <code>self</code> and <code>other</code> values to be equal, and is used by <code>==</code>.</div></details><details class="toggle method-toggle" open><summary><section id="method.ne" class="method trait-impl"><span class="rightside"><span class="since" title="Stable since Rust version 1.0.0">1.0.0</span> · <a class="src" href="https://doc.rust-lang.org/1.82.0/src/core/cmp.rs.html#261">source</a></span><a href="#method.ne" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.82.0/core/cmp/trait.PartialEq.html#method.ne" class="fn">ne</a>(&self, other: <a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.reference.html">&Rhs</a>) -> <a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.bool.html">bool</a></h4></section></summary><div class='docblock'>Tests for <code>!=</code>. The default implementation is almost always sufficient,
|
||
|
and should not be overridden without very good reason.</div></details></div></details><details class="toggle implementors-toggle" open><summary><section id="impl-PartialOrd-for-LittleEndian" class="impl"><a class="src rightside" href="../src/byteorder/lib.rs.html#1842">source</a><a href="#impl-PartialOrd-for-LittleEndian" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="https://doc.rust-lang.org/1.82.0/core/cmp/trait.PartialOrd.html" title="trait core::cmp::PartialOrd">PartialOrd</a> for <a class="enum" href="enum.LittleEndian.html" title="enum byteorder::LittleEndian">LittleEndian</a></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.partial_cmp" class="method trait-impl"><a class="src rightside" href="../src/byteorder/lib.rs.html#1842">source</a><a href="#method.partial_cmp" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.82.0/core/cmp/trait.PartialOrd.html#tymethod.partial_cmp" class="fn">partial_cmp</a>(&self, other: &<a class="enum" href="enum.LittleEndian.html" title="enum byteorder::LittleEndian">LittleEndian</a>) -> <a class="enum" href="https://doc.rust-lang.org/1.82.0/core/option/enum.Option.html" title="enum core::option::Option">Option</a><<a class="enum" href="https://doc.rust-lang.org/1.82.0/core/cmp/enum.Ordering.html" title="enum core::cmp::Ordering">Ordering</a>></h4></section></summary><div class='docblock'>This method returns an ordering between <code>self</code> and <code>other</code> values if one exists. <a href="https://doc.rust-lang.org/1.82.0/core/cmp/trait.PartialOrd.html#tymethod.partial_cmp">Read more</a></div></details><details class="toggle method-toggle" open><summary><section id="method.lt" class="method trait-impl"><span class="rightside"><span class="since" title="Stable since Rust version 1.0.0">1.0.0</span> · <a class="src" href="https://doc.rust-lang.org/1.82.0/src/core/cmp.rs.html#1178">source</a></span><a href="#method.lt" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.82.0/core/cmp/trait.PartialOrd.html#method.lt" class="fn">lt</a>(&self, other: <a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.reference.html">&Rhs</a>) -> <a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.bool.html">bool</a></h4></section></summary><div class='docblock'>Tests less than (for <code>self</code> and <code>other</code>) and is used by the <code><</code> operator. <a href="https://doc.rust-lang.org/1.82.0/core/cmp/trait.PartialOrd.html#method.lt">Read more</a></div></details><details class="toggle method-toggle" open><summary><section id="method.le" class="method trait-impl"><span class="rightside"><span class="since" title="Stable since Rust version 1.0.0">1.0.0</span> · <a class="src" href="https://doc.rust-lang.org/1.82.0/src/core/cmp.rs.html#1196">source</a></span><a href="#method.le" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.82.0/core/cmp/trait.PartialOrd.html#method.le" class="fn">le</a>(&self, other: <a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.reference.html">&Rhs</a>) -> <a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.bool.html">bool</a></h4></section></summary><div class='docblock'>Tests less than or equal to (for <code>self</code> and <code>other</code>) and is used by the
|
||
|
<code><=</code> operator. <a href="https://doc.rust-lang.org/1.82.0/core/cmp/trait.PartialOrd.html#method.le">Read more</a></div></details><details class="toggle method-toggle" open><summary><section id="method.gt" class="method trait-impl"><span class="rightside"><span class="since" title="Stable since Rust version 1.0.0">1.0.0</span> · <a class="src" href="https://doc.rust-lang.org/1.82.0/src/core/cmp.rs.html#1214">source</a></span><a href="#method.gt" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.82.0/core/cmp/trait.PartialOrd.html#method.gt" class="fn">gt</a>(&self, other: <a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.reference.html">&Rhs</a>) -> <a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.bool.html">bool</a></h4></section></summary><div class='docblock'>Tests greater than (for <code>self</code> and <code>other</code>) and is used by the <code>></code>
|
||
|
operator. <a href="https://doc.rust-lang.org/1.82.0/core/cmp/trait.PartialOrd.html#method.gt">Read more</a></div></details><details class="toggle method-toggle" open><summary><section id="method.ge" class="method trait-impl"><span class="rightside"><span class="since" title="Stable since Rust version 1.0.0">1.0.0</span> · <a class="src" href="https://doc.rust-lang.org/1.82.0/src/core/cmp.rs.html#1232">source</a></span><a href="#method.ge" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.82.0/core/cmp/trait.PartialOrd.html#method.ge" class="fn">ge</a>(&self, other: <a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.reference.html">&Rhs</a>) -> <a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.bool.html">bool</a></h4></section></summary><div class='docblock'>Tests greater than or equal to (for <code>self</code> and <code>other</code>) and is used by
|
||
|
the <code>>=</code> operator. <a href="https://doc.rust-lang.org/1.82.0/core/cmp/trait.PartialOrd.html#method.ge">Read more</a></div></details></div></details><section id="impl-Copy-for-LittleEndian" class="impl"><a class="src rightside" href="../src/byteorder/lib.rs.html#1842">source</a><a href="#impl-Copy-for-LittleEndian" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="https://doc.rust-lang.org/1.82.0/core/marker/trait.Copy.html" title="trait core::marker::Copy">Copy</a> for <a class="enum" href="enum.LittleEndian.html" title="enum byteorder::LittleEndian">LittleEndian</a></h3></section><section id="impl-Eq-for-LittleEndian" class="impl"><a class="src rightside" href="../src/byteorder/lib.rs.html#1842">source</a><a href="#impl-Eq-for-LittleEndian" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="https://doc.rust-lang.org/1.82.0/core/cmp/trait.Eq.html" title="trait core::cmp::Eq">Eq</a> for <a class="enum" href="enum.LittleEndian.html" title="enum byteorder::LittleEndian">LittleEndian</a></h3></section><section id="impl-StructuralPartialEq-for-LittleEndian" class="impl"><a class="src rightside" href="../src/byteorder/lib.rs.html#1842">source</a><a href="#impl-StructuralPartialEq-for-LittleEndian" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="https://doc.rust-lang.org/1.82.0/core/marker/trait.StructuralPartialEq.html" title="trait core::marker::StructuralPartialEq">StructuralPartialEq</a> for <a class="enum" href="enum.LittleEndian.html" title="enum byteorder::LittleEndian">LittleEndian</a></h3></section></div><h2 id="synthetic-implementations" class="section-header">Auto Trait Implementations<a href="#synthetic-implementations" class="anchor">§</a></h2><div id="synthetic-implementations-list"><section id="impl-Freeze-for-LittleEndian" class="impl"><a href="#impl-Freeze-for-LittleEndian" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="https://doc.rust-lang.org/1.82.0/core/marker/trait.Freeze.html" title="trait core::marker::Freeze">Freeze</a> for <a class="enum" href="enum.LittleEndian.html" title="enum byteorder::LittleEndian">LittleEndian</a></h3></section><section id="impl-RefUnwindSafe-for-LittleEndian" class="impl"><a href="#impl-RefUnwindSafe-for-LittleEndian" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="https://doc.rust-lang.org/1.82.0/core/panic/unwind_safe/trait.RefUnwindSafe.html" title="trait core::panic::unwind_safe::RefUnwindSafe">RefUnwindSafe</a> for <a class="enum" href="enum.LittleEndian.html" title="enum byteorder::LittleEndian">LittleEndian</a></h3></section><section id="impl-Send-for-LittleEndian" class="impl"><a href="#impl-Send-for-LittleEndian" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="https://doc.rust-lang.org/1.82.0/core/marker/trait.Send.html" title="trait core::marker::Send">Send</a> for <a class="enum" href="enum.LittleEndian.html" title="enum byteorder::LittleEndian">LittleEndian</a></h3></section><section id="impl-Sync-for-LittleEndian" class="impl"><a href="#impl-Sync-for-LittleEndian" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="https://doc.rust-lang.org/1.82.0/core/marker/trait.Sync.html" title="trait core::marker::Sync">Sync</a> for <a class="enum" href="enum.LittleEndian.html" title="enum byteorder::LittleEndian">LittleEndian</a></h3></section><section id="impl-Unpin-for-LittleEndian" class="impl"><a href="#impl-Unpin-for-LittleEndian" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="https://doc.rust-lang.org/1.82.0/core/marker/trait.Unpin.html" title="trait core::marker::Unpin">Unpin</a> for <a class="enum" href="enum.LittleEndian.html" title="enum byteorder::LittleEndian">LittleEndian</a></h3></section><section id="impl-UnwindSafe-for-LittleEndian" class="impl"><a href="#impl-UnwindSafe-for-LittleEndian" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="https://doc.rust-lang.org/1.82.0/core/panic/unwind_safe/trait.UnwindSafe.html" title="trait core
|
||
|
T: 'static + ?<a class="trait" href="https://doc.rust-lang.org/1.82.0/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,</div></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.type_id" class="method trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/1.82.0/src/core/any.rs.html#139">source</a><a href="#method.type_id" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.82.0/core/any/trait.Any.html#tymethod.type_id" class="fn">type_id</a>(&self) -> <a class="struct" href="https://doc.rust-lang.org/1.82.0/core/any/struct.TypeId.html" title="struct core::any::TypeId">TypeId</a></h4></section></summary><div class='docblock'>Gets the <code>TypeId</code> of <code>self</code>. <a href="https://doc.rust-lang.org/1.82.0/core/any/trait.Any.html#tymethod.type_id">Read more</a></div></details></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Borrow%3CT%3E-for-T" class="impl"><a class="src rightside" href="https://doc.rust-lang.org/1.82.0/src/core/borrow.rs.html#209">source</a><a href="#impl-Borrow%3CT%3E-for-T" class="anchor">§</a><h3 class="code-header">impl<T> <a class="trait" href="https://doc.rust-lang.org/1.82.0/core/borrow/trait.Borrow.html" title="trait core::borrow::Borrow">Borrow</a><T> for T<div class="where">where
|
||
|
T: ?<a class="trait" href="https://doc.rust-lang.org/1.82.0/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,</div></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.borrow" class="method trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/1.82.0/src/core/borrow.rs.html#211">source</a><a href="#method.borrow" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.82.0/core/borrow/trait.Borrow.html#tymethod.borrow" class="fn">borrow</a>(&self) -> <a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.reference.html">&T</a></h4></section></summary><div class='docblock'>Immutably borrows from an owned value. <a href="https://doc.rust-lang.org/1.82.0/core/borrow/trait.Borrow.html#tymethod.borrow">Read more</a></div></details></div></details><details class="toggle implementors-toggle"><summary><section id="impl-BorrowMut%3CT%3E-for-T" class="impl"><a class="src rightside" href="https://doc.rust-lang.org/1.82.0/src/core/borrow.rs.html#217">source</a><a href="#impl-BorrowMut%3CT%3E-for-T" class="anchor">§</a><h3 class="code-header">impl<T> <a class="trait" href="https://doc.rust-lang.org/1.82.0/core/borrow/trait.BorrowMut.html" title="trait core::borrow::BorrowMut">BorrowMut</a><T> for T<div class="where">where
|
||
|
T: ?<a class="trait" href="https://doc.rust-lang.org/1.82.0/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,</div></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.borrow_mut" class="method trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/1.82.0/src/core/borrow.rs.html#218">source</a><a href="#method.borrow_mut" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.82.0/core/borrow/trait.BorrowMut.html#tymethod.borrow_mut" class="fn">borrow_mut</a>(&mut self) -> <a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.reference.html">&mut T</a></h4></section></summary><div class='docblock'>Mutably borrows from an owned value. <a href="https://doc.rust-lang.org/1.82.0/core/borrow/trait.BorrowMut.html#tymethod.borrow_mut">Read more</a></div></details></div></details><details class="toggle implementors-toggle"><summary><section id="impl-CloneToUninit-for-T" class="impl"><a class="src rightside" href="https://doc.rust-lang.org/1.82.0/src/core/clone.rs.html#273">source</a><a href="#impl-CloneToUninit-for-T" class="anchor">§</a><h3 class="code-header">impl<T> <a class="trait" href="https://doc.rust-lang.org/1.82.0/core/clone/trait.CloneToUninit.html" title="trait core::clone::CloneToUninit">CloneToUninit</a> for T<div class="where">where
|
||
|
T: <a class="trait" href="https://doc.rust-lang.org/1.82.0/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a>,</div></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.clone_to_uninit" class="method trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/1.82.0/src/core/clone.rs.html#275">source</a><a href="#method.clone_to_uninit" class="anchor">§</a><h4 class="code-header">unsafe fn <a href="https://doc.rust-lang.org/1.82.0/core/clone/trait.CloneToUninit.html#tymethod.clone_to_uninit" class="fn">clone_to_uninit</a>(&self, dst: <a class="primitive" href="https://doc.rust-lang.org/1.82.0/core/primitive.pointer.html">*mut T</a>)</h4></section></summary><span class="item-info"><div class="stab unstable"><span class="emoji">🔬</span><span>This is a nightly-only experimental API. (<code>clone_to_uninit</code>)</span></div></span><div class='docblock'>Performs copy-assignment from <code>self</code> to <code>dst</code>. <a href="https://doc.rust-lang.org/1.82.0/core/clone/trait.CloneToUninit.html#tymethod.clone_to_uninit">Read more</a></div></details></div></details><details class="toggle implementors-toggle"><summary><section id="impl-From%3CT%3E-for-T" class="impl"><a class="src rightside" href="https://doc.rust-lang.org/1.82.0/src/core/convert/mod.rs.html#765">source</a><a href="#impl-From%3CT%3E-for-T" class="anchor">§</a><h3 class="code-header">impl<T> <a class="trait" href="https://doc.rust-lang.org/1.82.0/core/convert/trait.From.html" title="trait core::convert::From">From</a><T> for T</h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.from" class="method trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/1.82.0/src/core/convert/mod.rs.html#768">source</a><a href="#method.from" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.82.0/core/convert/trait.From.html#tymethod.from" class="fn">from</a>(t: T) -> T</h4></section></summary><div class="docblock"><p>Returns the argument unchanged.</p>
|
||
|
</div></details></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Into%3CU%3E-for-T" class="impl"><a class="src rightside" href="https://doc.rust-lang.org/1.82.0/src/core/convert/mod.rs.html#748-750">source</a><a href="#impl-Into%3CU%3E-for-T" class="anchor">§</a><h3 class="code-header">impl<T, U> <a class="trait" href="https://doc.rust-lang.org/1.82.0/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a><U> for T<div class="where">where
|
||
|
U: <a class="trait" href="https://doc.rust-lang.org/1.82.0/core/convert/trait.From.html" title="trait core::convert::From">From</a><T>,</div></h3></section></summary><div class="impl-items"><details class="toggle method-toggle" open><summary><section id="method.into" class="method trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/1.82.0/src/core/convert/mod.rs.html#758">source</a><a href="#method.into" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.82.0/core/convert/trait.Into.html#tymethod.into" class="fn">into</a>(self) -> U</h4></section></summary><div class="docblock"><p>Calls <code>U::from(self)</code>.</p>
|
||
|
<p>That is, this conversion is whatever the implementation of
|
||
|
<code><a href="https://doc.rust-lang.org/1.82.0/core/convert/trait.From.html" title="trait core::convert::From">From</a><T> for U</code> chooses to do.</p>
|
||
|
</div></details></div></details><details class="toggle implementors-toggle"><summary><section id="impl-TryFrom%3CU%3E-for-T" class="impl"><a class="src rightside" href="https://doc.rust-lang.org/1.82.0/src/core/convert/mod.rs.html#805-807">source</a><a href="#impl-TryFrom%3CU%3E-for-T" class="anchor">§</a><h3 class="code-header">impl<T, U> <a class="trait" href="https://doc.rust-lang.org/1.82.0/core/convert/trait.TryFrom.html" title="trait core::convert::TryFrom">TryFrom</a><U> for T<div class="where">where
|
||
|
U: <a class="trait" href="https://doc.rust-lang.org/1.82.0/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a><T>,</div></h3></section></summary><div class="impl-items"><details class="toggle" open><summary><section id="associatedtype.Error-1" class="associatedtype trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/1.82.0/src/core/convert/mod.rs.html#809">source</a><a href="#associatedtype.Error-1" class="anchor">§</a><h4 class="code-header">type <a href="https://doc.rust-lang.org/1.82.0/core/convert/trait.TryFrom.html#associatedtype.Error" class="associatedtype">Error</a> = <a class="enum" href="https://doc.rust-lang.org/1.82.0/core/convert/enum.Infallible.html" title="enum core::convert::Infallible">Infallible</a></h4></section></summary><div class='docblock'>The type returned in the event of a conversion error.</div></details><details class="toggle method-toggle" open><summary><section id="method.try_from" class="method trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/1.82.0/src/core/convert/mod.rs.html#812">source</a><a href="#method.try_from" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.82.0/core/convert/trait.TryFrom.html#tymethod.try_from" class="fn">try_from</a>(value: U) -> <a class="enum" href="https://doc.rust-lang.org/1.82.0/core/result/enum.Result.html" title="enum core::result::Result">Result</a><T, <T as <a class="trait" href="https://doc.rust-lang.org/1.82.0/core/convert/trait.TryFrom.html" title="trait core::convert::TryFrom">TryFrom</a><U>>::<a class="associatedtype" href="https://doc.rust-lang.org/1.82.0/core/convert/trait.TryFrom.html#associatedtype.Error" title="type core::convert::TryFrom::Error">Error</a>></h4></section></summary><div class='docblock'>Performs the conversion.</div></details></div></details><details class="toggle implementors-toggle"><summary><section id="impl-TryInto%3CU%3E-for-T" class="impl"><a class="src rightside" href="https://doc.rust-lang.org/1.82.0/src/core/convert/mod.rs.html#790-792">source</a><a href="#impl-TryInto%3CU%3E-for-T" class="anchor">§</a><h3 class="code-header">impl<T, U> <a class="trait" href="https://doc.rust-lang.org/1.82.0/core/convert/trait.TryInto.html" title="trait core::convert::TryInto">TryInto</a><U> for T<div class="where">where
|
||
|
U: <a class="trait" href="https://doc.rust-lang.org/1.82.0/core/convert/trait.TryFrom.html" title="trait core::convert::TryFrom">TryFrom</a><T>,</div></h3></section></summary><div class="impl-items"><details class="toggle" open><summary><section id="associatedtype.Error" class="associatedtype trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/1.82.0/src/core/convert/mod.rs.html#794">source</a><a href="#associatedtype.Error" class="anchor">§</a><h4 class="code-header">type <a href="https://doc.rust-lang.org/1.82.0/core/convert/trait.TryInto.html#associatedtype.Error" class="associatedtype">Error</a> = <U as <a class="trait" href="https://doc.rust-lang.org/1.82.0/core/convert/trait.TryFrom.html" title="trait core::convert::TryFrom">TryFrom</a><T>>::<a class="associatedtype" href="https://doc.rust-lang.org/1.82.0/core/convert/trait.TryFrom.html#associatedtype.Error" title="type core::convert::TryFrom::Error">Error</a></h4></section></summary><div class='docblock'>The type returned in the event of a conversion error.</div></details><details class="toggle method-toggle" open><summary><section id="method.try_into" class="method trait-impl"><a class="src rightside" href="https://doc.rust-lang.org/1.82.0/src/core/convert/mod.rs.html#797">source</a><a href="#method.try_into" class="anchor">§</a><h4 class="code-header">fn <a href="https://doc.rust-lang.org/1.82.0/core/convert/trait.TryInto.html#tymethod.try_into" class="fn">try_into</a>(self) -> <a class="enum" href="https://doc.rust-lang.org/1.82.0/core/result/enum.Result.html" title="enum core::result::Result">Result</a><U, <U as <a class="trait" href="https://doc.rust-lang.org/1.82.0/core/convert/trait.TryFrom.html" title="trait core::convert::TryFrom">TryFrom</a><T>>::<a class="associatedtype" href="https://doc.rust-lang.org/1.82.0/core/convert/trait.TryFrom.html#associatedtype.Error" title="type core::convert::TryFrom::Error">Error</a>></h4></section></summary><div class='docblock'>Performs the conversion.</div></details></div></details></div></section></div></main></body></html>
|