<main><divclass="width-limiter"><navclass="sub"><formclass="search-form"><span></span><divid="sidebar-button"tabindex="-1"><ahref="../../winnow/all.html"title="show sidebar"></a></div><inputclass="search-input"name="search"aria-label="Run search in the documentation"autocomplete="off"spellcheck="false"placeholder="Click or press ‘S’ to search, ‘?’ for more options…"type="search"><divid="help-button"tabindex="-1"><ahref="../../help.html"title="help">?</a></div><divid="settings-menu"tabindex="-1"><ahref="../../settings.html"title="settings"><imgwidth="22"height="22"alt="Change settings"src="../../static.files/wheel-7b819b6101059cd0.svg"></a></div></form></nav><sectionid="main-content"class="content"><divclass="main-heading"><h1>Function <ahref="../index.html">winnow</a>::<wbr><ahref="index.html">binary</a>::<wbr><aclass="fn"href="#">u32</a><buttonid="copy-path"title="Copy item path to clipboard"><imgsrc="../../static.files/clipboard-7571035ce49a181d.svg"width="19"height="18"alt="Copy item path"></button></h1><spanclass="out-of-band"><aclass="src"href="../../src/winnow/binary/mod.rs.html#1476-1492">source</a> · <buttonid="toggle-all-docs"title="collapse all docs">[<span>−</span>]</button></span></div><preclass="rust item-decl"><code>pub fn u32<Input, Error>(endian: <aclass="enum"href="enum.Endianness.html"title="enum winnow::binary::Endianness">Endianness</a>) -> impl <aclass="trait"href="../trait.Parser.html"title="trait winnow::Parser">Parser</a><Input, <aclass="primitive"href="https://doc.rust-lang.org/1.78.0/std/primitive.u32.html">u32</a>, Error><divclass="where">where
<Input as <aclass="trait"href="../stream/trait.Stream.html"title="trait winnow::stream::Stream">Stream</a>>::<aclass="associatedtype"href="../stream/trait.Stream.html#associatedtype.Slice"title="type winnow::stream::Stream::Slice">Slice</a>: <aclass="trait"href="../stream/trait.AsBytes.html"title="trait winnow::stream::AsBytes">AsBytes</a>,
Error: <aclass="trait"href="../error/trait.ParserError.html"title="trait winnow::error::ParserError">ParserError</a><Input>,</div></code></pre><detailsclass="toggle top-doc"open><summaryclass="hideme"><span>Expand description</span></summary><divclass="docblock"><p>Recognizes an unsigned 4 byte integer</p>
<p>If the parameter is <code>winnow::binary::Endianness::Big</code>, parse a big endian u32 integer,
otherwise if <code>winnow::binary::Endianness::Little</code> parse a little endian u32 integer.</p>
<p><em>Complete version</em>: returns an error if there is not enough input data</p>
<p><em>[Partial version][crate::_topic::partial]</em>: Will return <code>Err(winnow::error::ErrMode::Incomplete(_))</code> if there is not enough data.</p>