mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-12-02 00:14:33 +01:00
753 lines
No EOL
940 KiB
HTML
753 lines
No EOL
940 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="Trait implemented by readable registers to enable the `read` method."><title>Readable in nrf52840_pac::generic - 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="nrf52840_pac" 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 trait"><!--[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="../../nrf52840_pac/index.html">nrf52840_<wbr>pac</a><span class="version">0.12.2</span></h2></div><h2 class="location"><a href="#">Readable</a></h2><div class="sidebar-elems"><section><h3><a href="#required-associated-types">Required Associated Types</a></h3><ul class="block"><li><a href="#associatedtype.Reader">Reader</a></li></ul><h3><a href="#object-safety">Object Safety</a></h3><h3><a href="#implementors">Implementors</a></h3></section><h2><a href="index.html">In nrf52840_<wbr>pac::<wbr>generic</a></h2></div></nav><div class="sidebar-resizer"></div><main><div class="width-limiter"><rustdoc-search></rustdoc-search><section id="main-content" class="content"><div class="main-heading"><h1>Trait <a href="../index.html">nrf52840_pac</a>::<wbr><a href="index.html">generic</a>::<wbr><a class="trait" href="#">Readable</a><button id="copy-path" title="Copy item path to clipboard">Copy item path</button></h1><span class="out-of-band"><a class="src" href="../../src/nrf52840_pac/generic.rs.html#10-13">source</a> · <button id="toggle-all-docs" title="collapse all docs">[<span>−</span>]</button></span></div><pre class="rust item-decl"><code>pub trait Readable: <a class="trait" href="trait.RegisterSpec.html" title="trait nrf52840_pac::generic::RegisterSpec">RegisterSpec</a> {
|
||
type <a href="#associatedtype.Reader" class="associatedtype">Reader</a>: <a class="trait" href="https://doc.rust-lang.org/1.82.0/core/convert/trait.From.html" title="trait core::convert::From">From</a><<a class="struct" href="struct.R.html" title="struct nrf52840_pac::generic::R">R</a><Self>> + <a class="trait" href="https://doc.rust-lang.org/1.82.0/core/ops/deref/trait.Deref.html" title="trait core::ops::deref::Deref">Deref</a><Target = <a class="struct" href="struct.R.html" title="struct nrf52840_pac::generic::R">R</a><Self>>;
|
||
}</code></pre><details class="toggle top-doc" open><summary class="hideme"><span>Expand description</span></summary><div class="docblock"><p>Trait implemented by readable registers to enable the <code>read</code> method.</p>
|
||
<p>Registers marked with <code>Writable</code> can be also <code>modify</code>’ed.</p>
|
||
</div></details><h2 id="required-associated-types" class="section-header">Required Associated Types<a href="#required-associated-types" class="anchor">§</a></h2><div class="methods"><details class="toggle" open><summary><section id="associatedtype.Reader" class="method"><a class="src rightside" href="../../src/nrf52840_pac/generic.rs.html#12">source</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a>: <a class="trait" href="https://doc.rust-lang.org/1.82.0/core/convert/trait.From.html" title="trait core::convert::From">From</a><<a class="struct" href="struct.R.html" title="struct nrf52840_pac::generic::R">R</a><Self>> + <a class="trait" href="https://doc.rust-lang.org/1.82.0/core/ops/deref/trait.Deref.html" title="trait core::ops::deref::Deref">Deref</a><Target = <a class="struct" href="struct.R.html" title="struct nrf52840_pac::generic::R">R</a><Self>></h4></section></summary><div class="docblock"><p>Result from a call to <code>read</code> and argument to <code>modify</code>.</p>
|
||
</div></details></div><h2 id="object-safety" class="section-header">Object Safety<a href="#object-safety" class="anchor">§</a></h2><div class="object-safety-info">This trait is <b>not</b> <a href="https://doc.rust-lang.org/1.82.0/reference/items/traits.html#object-safety">object safe</a>.</div><h2 id="implementors" class="section-header">Implementors<a href="#implementors" class="anchor">§</a></h2><div id="implementors-list"><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ADDRPTR_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/aar/addrptr.rs.html#67-69">source</a><a href="#impl-Readable-for-ADDRPTR_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../aar/addrptr/struct.ADDRPTR_SPEC.html" title="struct nrf52840_pac::aar::addrptr::ADDRPTR_SPEC">ADDRPTR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../aar/addrptr/struct.R.html" title="struct nrf52840_pac::aar::addrptr::R">addrptr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-1" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/aar/addrptr.rs.html#68">source</a><a href="#associatedtype.Reader-1" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../aar/addrptr/struct.R.html" title="struct nrf52840_pac::aar::addrptr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ENABLE_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/aar/enable.rs.html#115-117">source</a><a href="#impl-Readable-for-ENABLE_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::aar::enable::<a class="struct" href="../aar/enable/struct.ENABLE_SPEC.html" title="struct nrf52840_pac::aar::enable::ENABLE_SPEC">ENABLE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../aar/enable/struct.R.html" title="struct nrf52840_pac::aar::enable::R">enable::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-2" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/aar/enable.rs.html#116">source</a><a href="#associatedtype.Reader-2" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../aar/enable/struct.R.html" title="struct nrf52840_pac::aar::enable::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_END_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/aar/events_end.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_END_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::aar::events_end::<a class="struct" href="../aar/events_end/struct.EVENTS_END_SPEC.html" title="struct nrf52840_pac::aar::events_end::EVENTS_END_SPEC">EVENTS_END_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../aar/events_end/struct.R.html" title="struct nrf52840_pac::aar::events_end::R">events_end::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-3" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/aar/events_end.rs.html#68">source</a><a href="#associatedtype.Reader-3" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../aar/events_end/struct.R.html" title="struct nrf52840_pac::aar::events_end::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_NOTRESOLVED_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/aar/events_notresolved.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_NOTRESOLVED_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../aar/events_notresolved/struct.EVENTS_NOTRESOLVED_SPEC.html" title="struct nrf52840_pac::aar::events_notresolved::EVENTS_NOTRESOLVED_SPEC">EVENTS_NOTRESOLVED_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../aar/events_notresolved/struct.R.html" title="struct nrf52840_pac::aar::events_notresolved::R">events_notresolved::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-4" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/aar/events_notresolved.rs.html#69">source</a><a href="#associatedtype.Reader-4" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../aar/events_notresolved/struct.R.html" title="struct nrf52840_pac::aar::events_notresolved::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_RESOLVED_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/aar/events_resolved.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_RESOLVED_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../aar/events_resolved/struct.EVENTS_RESOLVED_SPEC.html" title="struct nrf52840_pac::aar::events_resolved::EVENTS_RESOLVED_SPEC">EVENTS_RESOLVED_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../aar/events_resolved/struct.R.html" title="struct nrf52840_pac::aar::events_resolved::R">events_resolved::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-5" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/aar/events_resolved.rs.html#69">source</a><a href="#associatedtype.Reader-5" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../aar/events_resolved/struct.R.html" title="struct nrf52840_pac::aar::events_resolved::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENCLR_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/aar/intenclr.rs.html#255-257">source</a><a href="#impl-Readable-for-INTENCLR_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::aar::intenclr::<a class="struct" href="../aar/intenclr/struct.INTENCLR_SPEC.html" title="struct nrf52840_pac::aar::intenclr::INTENCLR_SPEC">INTENCLR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../aar/intenclr/struct.R.html" title="struct nrf52840_pac::aar::intenclr::R">intenclr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-6" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/aar/intenclr.rs.html#256">source</a><a href="#associatedtype.Reader-6" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../aar/intenclr/struct.R.html" title="struct nrf52840_pac::aar::intenclr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENSET_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/aar/intenset.rs.html#255-257">source</a><a href="#impl-Readable-for-INTENSET_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::aar::intenset::<a class="struct" href="../aar/intenset/struct.INTENSET_SPEC.html" title="struct nrf52840_pac::aar::intenset::INTENSET_SPEC">INTENSET_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../aar/intenset/struct.R.html" title="struct nrf52840_pac::aar::intenset::R">intenset::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-7" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/aar/intenset.rs.html#256">source</a><a href="#associatedtype.Reader-7" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../aar/intenset/struct.R.html" title="struct nrf52840_pac::aar::intenset::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-IRKPTR_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/aar/irkptr.rs.html#67-69">source</a><a href="#impl-Readable-for-IRKPTR_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../aar/irkptr/struct.IRKPTR_SPEC.html" title="struct nrf52840_pac::aar::irkptr::IRKPTR_SPEC">IRKPTR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../aar/irkptr/struct.R.html" title="struct nrf52840_pac::aar::irkptr::R">irkptr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-8" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/aar/irkptr.rs.html#68">source</a><a href="#associatedtype.Reader-8" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../aar/irkptr/struct.R.html" title="struct nrf52840_pac::aar::irkptr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-NIRK_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/aar/nirk.rs.html#67-69">source</a><a href="#impl-Readable-for-NIRK_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../aar/nirk/struct.NIRK_SPEC.html" title="struct nrf52840_pac::aar::nirk::NIRK_SPEC">NIRK_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../aar/nirk/struct.R.html" title="struct nrf52840_pac::aar::nirk::R">nirk::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-9" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/aar/nirk.rs.html#68">source</a><a href="#associatedtype.Reader-9" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../aar/nirk/struct.R.html" title="struct nrf52840_pac::aar::nirk::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-SCRATCHPTR_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/aar/scratchptr.rs.html#68-70">source</a><a href="#impl-Readable-for-SCRATCHPTR_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::aar::scratchptr::<a class="struct" href="../aar/scratchptr/struct.SCRATCHPTR_SPEC.html" title="struct nrf52840_pac::aar::scratchptr::SCRATCHPTR_SPEC">SCRATCHPTR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../aar/scratchptr/struct.R.html" title="struct nrf52840_pac::aar::scratchptr::R">scratchptr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-10" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/aar/scratchptr.rs.html#69">source</a><a href="#associatedtype.Reader-10" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../aar/scratchptr/struct.R.html" title="struct nrf52840_pac::aar::scratchptr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-STATUS_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/aar/status.rs.html#31-33">source</a><a href="#impl-Readable-for-STATUS_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::aar::status::<a class="struct" href="../aar/status/struct.STATUS_SPEC.html" title="struct nrf52840_pac::aar::status::STATUS_SPEC">STATUS_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../aar/status/struct.R.html" title="struct nrf52840_pac::aar::status::R">status::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-11" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/aar/status.rs.html#32">source</a><a href="#associatedtype.Reader-11" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../aar/status/struct.R.html" title="struct nrf52840_pac::aar::status::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ADDR_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/acl/acl/addr.rs.html#67-69">source</a><a href="#impl-Readable-for-ADDR_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../acl/acl/addr/struct.ADDR_SPEC.html" title="struct nrf52840_pac::acl::acl::addr::ADDR_SPEC">ADDR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../acl/acl/addr/struct.R.html" title="struct nrf52840_pac::acl::acl::addr::R">addr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-12" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/acl/acl/addr.rs.html#68">source</a><a href="#associatedtype.Reader-12" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../acl/acl/addr/struct.R.html" title="struct nrf52840_pac::acl::acl::addr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-PERM_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/acl/acl/perm.rs.html#173-175">source</a><a href="#impl-Readable-for-PERM_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../acl/acl/perm/struct.PERM_SPEC.html" title="struct nrf52840_pac::acl::acl::perm::PERM_SPEC">PERM_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../acl/acl/perm/struct.R.html" title="struct nrf52840_pac::acl::acl::perm::R">perm::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-13" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/acl/acl/perm.rs.html#174">source</a><a href="#associatedtype.Reader-13" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../acl/acl/perm/struct.R.html" title="struct nrf52840_pac::acl::acl::perm::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-SIZE_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/acl/acl/size.rs.html#67-69">source</a><a href="#impl-Readable-for-SIZE_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../acl/acl/size/struct.SIZE_SPEC.html" title="struct nrf52840_pac::acl::acl::size::SIZE_SPEC">SIZE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../acl/acl/size/struct.R.html" title="struct nrf52840_pac::acl::acl::size::R">size::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-14" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/acl/acl/size.rs.html#68">source</a><a href="#associatedtype.Reader-14" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../acl/acl/size/struct.R.html" title="struct nrf52840_pac::acl::acl::size::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-UNUSED0_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/acl/acl/unused0.rs.html#51-53">source</a><a href="#impl-Readable-for-UNUSED0_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::acl::acl::unused0::<a class="struct" href="../acl/acl/unused0/struct.UNUSED0_SPEC.html" title="struct nrf52840_pac::acl::acl::unused0::UNUSED0_SPEC">UNUSED0_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../acl/acl/unused0/struct.R.html" title="struct nrf52840_pac::acl::acl::unused0::R">unused0::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-15" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/acl/acl/unused0.rs.html#52">source</a><a href="#associatedtype.Reader-15" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../acl/acl/unused0/struct.R.html" title="struct nrf52840_pac::acl::acl::unused0::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-HOST_CRYPTOKEY_SEL_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/cc_host_rgf/host_cryptokey_sel.rs.html#129-131">source</a><a href="#impl-Readable-for-HOST_CRYPTOKEY_SEL_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../cc_host_rgf/host_cryptokey_sel/struct.HOST_CRYPTOKEY_SEL_SPEC.html" title="struct nrf52840_pac::cc_host_rgf::host_cryptokey_sel::HOST_CRYPTOKEY_SEL_SPEC">HOST_CRYPTOKEY_SEL_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../cc_host_rgf/host_cryptokey_sel/struct.R.html" title="struct nrf52840_pac::cc_host_rgf::host_cryptokey_sel::R">host_cryptokey_sel::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-16" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/cc_host_rgf/host_cryptokey_sel.rs.html#130">source</a><a href="#associatedtype.Reader-16" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../cc_host_rgf/host_cryptokey_sel/struct.R.html" title="struct nrf52840_pac::cc_host_rgf::host_cryptokey_sel::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-HOST_IOT_KDR0_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/cc_host_rgf/host_iot_kdr0.rs.html#68-70">source</a><a href="#impl-Readable-for-HOST_IOT_KDR0_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../cc_host_rgf/host_iot_kdr0/struct.HOST_IOT_KDR0_SPEC.html" title="struct nrf52840_pac::cc_host_rgf::host_iot_kdr0::HOST_IOT_KDR0_SPEC">HOST_IOT_KDR0_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../cc_host_rgf/host_iot_kdr0/struct.R.html" title="struct nrf52840_pac::cc_host_rgf::host_iot_kdr0::R">host_iot_kdr0::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-17" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/cc_host_rgf/host_iot_kdr0.rs.html#69">source</a><a href="#associatedtype.Reader-17" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../cc_host_rgf/host_iot_kdr0/struct.R.html" title="struct nrf52840_pac::cc_host_rgf::host_iot_kdr0::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-HOST_IOT_KPRTL_LOCK_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/cc_host_rgf/host_iot_kprtl_lock.rs.html#114-116">source</a><a href="#impl-Readable-for-HOST_IOT_KPRTL_LOCK_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../cc_host_rgf/host_iot_kprtl_lock/struct.HOST_IOT_KPRTL_LOCK_SPEC.html" title="struct nrf52840_pac::cc_host_rgf::host_iot_kprtl_lock::HOST_IOT_KPRTL_LOCK_SPEC">HOST_IOT_KPRTL_LOCK_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../cc_host_rgf/host_iot_kprtl_lock/struct.R.html" title="struct nrf52840_pac::cc_host_rgf::host_iot_kprtl_lock::R">host_iot_kprtl_lock::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-18" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/cc_host_rgf/host_iot_kprtl_lock.rs.html#115">source</a><a href="#associatedtype.Reader-18" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../cc_host_rgf/host_iot_kprtl_lock/struct.R.html" title="struct nrf52840_pac::cc_host_rgf::host_iot_kprtl_lock::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-HOST_IOT_LCS_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/cc_host_rgf/host_iot_lcs.rs.html#176-178">source</a><a href="#impl-Readable-for-HOST_IOT_LCS_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../cc_host_rgf/host_iot_lcs/struct.HOST_IOT_LCS_SPEC.html" title="struct nrf52840_pac::cc_host_rgf::host_iot_lcs::HOST_IOT_LCS_SPEC">HOST_IOT_LCS_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../cc_host_rgf/host_iot_lcs/struct.R.html" title="struct nrf52840_pac::cc_host_rgf::host_iot_lcs::R">host_iot_lcs::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-19" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/cc_host_rgf/host_iot_lcs.rs.html#177">source</a><a href="#associatedtype.Reader-19" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../cc_host_rgf/host_iot_lcs/struct.R.html" title="struct nrf52840_pac::cc_host_rgf::host_iot_lcs::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-CNFPTR_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ccm/cnfptr.rs.html#67-69">source</a><a href="#impl-Readable-for-CNFPTR_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../ccm/cnfptr/struct.CNFPTR_SPEC.html" title="struct nrf52840_pac::ccm::cnfptr::CNFPTR_SPEC">CNFPTR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ccm/cnfptr/struct.R.html" title="struct nrf52840_pac::ccm::cnfptr::R">cnfptr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-20" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ccm/cnfptr.rs.html#68">source</a><a href="#associatedtype.Reader-20" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ccm/cnfptr/struct.R.html" title="struct nrf52840_pac::ccm::cnfptr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ENABLE_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ccm/enable.rs.html#115-117">source</a><a href="#impl-Readable-for-ENABLE_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::ccm::enable::<a class="struct" href="../ccm/enable/struct.ENABLE_SPEC.html" title="struct nrf52840_pac::ccm::enable::ENABLE_SPEC">ENABLE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ccm/enable/struct.R.html" title="struct nrf52840_pac::ccm::enable::R">enable::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-21" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ccm/enable.rs.html#116">source</a><a href="#associatedtype.Reader-21" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ccm/enable/struct.R.html" title="struct nrf52840_pac::ccm::enable::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_ENDCRYPT_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ccm/events_endcrypt.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_ENDCRYPT_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../ccm/events_endcrypt/struct.EVENTS_ENDCRYPT_SPEC.html" title="struct nrf52840_pac::ccm::events_endcrypt::EVENTS_ENDCRYPT_SPEC">EVENTS_ENDCRYPT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ccm/events_endcrypt/struct.R.html" title="struct nrf52840_pac::ccm::events_endcrypt::R">events_endcrypt::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-22" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ccm/events_endcrypt.rs.html#69">source</a><a href="#associatedtype.Reader-22" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ccm/events_endcrypt/struct.R.html" title="struct nrf52840_pac::ccm::events_endcrypt::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_ENDKSGEN_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ccm/events_endksgen.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_ENDKSGEN_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../ccm/events_endksgen/struct.EVENTS_ENDKSGEN_SPEC.html" title="struct nrf52840_pac::ccm::events_endksgen::EVENTS_ENDKSGEN_SPEC">EVENTS_ENDKSGEN_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ccm/events_endksgen/struct.R.html" title="struct nrf52840_pac::ccm::events_endksgen::R">events_endksgen::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-23" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ccm/events_endksgen.rs.html#69">source</a><a href="#associatedtype.Reader-23" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ccm/events_endksgen/struct.R.html" title="struct nrf52840_pac::ccm::events_endksgen::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_ERROR_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ccm/events_error.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_ERROR_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::ccm::events_error::<a class="struct" href="../ccm/events_error/struct.EVENTS_ERROR_SPEC.html" title="struct nrf52840_pac::ccm::events_error::EVENTS_ERROR_SPEC">EVENTS_ERROR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ccm/events_error/struct.R.html" title="struct nrf52840_pac::ccm::events_error::R">events_error::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-24" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ccm/events_error.rs.html#68">source</a><a href="#associatedtype.Reader-24" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ccm/events_error/struct.R.html" title="struct nrf52840_pac::ccm::events_error::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INPTR_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ccm/inptr.rs.html#67-69">source</a><a href="#impl-Readable-for-INPTR_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../ccm/inptr/struct.INPTR_SPEC.html" title="struct nrf52840_pac::ccm::inptr::INPTR_SPEC">INPTR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ccm/inptr/struct.R.html" title="struct nrf52840_pac::ccm::inptr::R">inptr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-25" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ccm/inptr.rs.html#68">source</a><a href="#associatedtype.Reader-25" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ccm/inptr/struct.R.html" title="struct nrf52840_pac::ccm::inptr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENCLR_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ccm/intenclr.rs.html#254-256">source</a><a href="#impl-Readable-for-INTENCLR_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::ccm::intenclr::<a class="struct" href="../ccm/intenclr/struct.INTENCLR_SPEC.html" title="struct nrf52840_pac::ccm::intenclr::INTENCLR_SPEC">INTENCLR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ccm/intenclr/struct.R.html" title="struct nrf52840_pac::ccm::intenclr::R">intenclr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-26" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ccm/intenclr.rs.html#255">source</a><a href="#associatedtype.Reader-26" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ccm/intenclr/struct.R.html" title="struct nrf52840_pac::ccm::intenclr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENSET_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ccm/intenset.rs.html#254-256">source</a><a href="#impl-Readable-for-INTENSET_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::ccm::intenset::<a class="struct" href="../ccm/intenset/struct.INTENSET_SPEC.html" title="struct nrf52840_pac::ccm::intenset::INTENSET_SPEC">INTENSET_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ccm/intenset/struct.R.html" title="struct nrf52840_pac::ccm::intenset::R">intenset::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-27" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ccm/intenset.rs.html#255">source</a><a href="#associatedtype.Reader-27" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ccm/intenset/struct.R.html" title="struct nrf52840_pac::ccm::intenset::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-MAXPACKETSIZE_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ccm/maxpacketsize.rs.html#68-70">source</a><a href="#impl-Readable-for-MAXPACKETSIZE_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../ccm/maxpacketsize/struct.MAXPACKETSIZE_SPEC.html" title="struct nrf52840_pac::ccm::maxpacketsize::MAXPACKETSIZE_SPEC">MAXPACKETSIZE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ccm/maxpacketsize/struct.R.html" title="struct nrf52840_pac::ccm::maxpacketsize::R">maxpacketsize::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-28" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ccm/maxpacketsize.rs.html#69">source</a><a href="#associatedtype.Reader-28" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ccm/maxpacketsize/struct.R.html" title="struct nrf52840_pac::ccm::maxpacketsize::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-MICSTATUS_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ccm/micstatus.rs.html#65-67">source</a><a href="#impl-Readable-for-MICSTATUS_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../ccm/micstatus/struct.MICSTATUS_SPEC.html" title="struct nrf52840_pac::ccm::micstatus::MICSTATUS_SPEC">MICSTATUS_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ccm/micstatus/struct.R.html" title="struct nrf52840_pac::ccm::micstatus::R">micstatus::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-29" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ccm/micstatus.rs.html#66">source</a><a href="#associatedtype.Reader-29" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ccm/micstatus/struct.R.html" title="struct nrf52840_pac::ccm::micstatus::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-MODE_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ccm/mode.rs.html#262-264">source</a><a href="#impl-Readable-for-MODE_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::ccm::mode::<a class="struct" href="../ccm/mode/struct.MODE_SPEC.html" title="struct nrf52840_pac::ccm::mode::MODE_SPEC">MODE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ccm/mode/struct.R.html" title="struct nrf52840_pac::ccm::mode::R">mode::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-30" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ccm/mode.rs.html#263">source</a><a href="#associatedtype.Reader-30" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ccm/mode/struct.R.html" title="struct nrf52840_pac::ccm::mode::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-OUTPTR_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ccm/outptr.rs.html#67-69">source</a><a href="#impl-Readable-for-OUTPTR_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../ccm/outptr/struct.OUTPTR_SPEC.html" title="struct nrf52840_pac::ccm::outptr::OUTPTR_SPEC">OUTPTR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ccm/outptr/struct.R.html" title="struct nrf52840_pac::ccm::outptr::R">outptr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-31" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ccm/outptr.rs.html#68">source</a><a href="#associatedtype.Reader-31" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ccm/outptr/struct.R.html" title="struct nrf52840_pac::ccm::outptr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-RATEOVERRIDE_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ccm/rateoverride.rs.html#142-144">source</a><a href="#impl-Readable-for-RATEOVERRIDE_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../ccm/rateoverride/struct.RATEOVERRIDE_SPEC.html" title="struct nrf52840_pac::ccm::rateoverride::RATEOVERRIDE_SPEC">RATEOVERRIDE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ccm/rateoverride/struct.R.html" title="struct nrf52840_pac::ccm::rateoverride::R">rateoverride::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-32" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ccm/rateoverride.rs.html#143">source</a><a href="#associatedtype.Reader-32" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ccm/rateoverride/struct.R.html" title="struct nrf52840_pac::ccm::rateoverride::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-SCRATCHPTR_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ccm/scratchptr.rs.html#68-70">source</a><a href="#impl-Readable-for-SCRATCHPTR_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::ccm::scratchptr::<a class="struct" href="../ccm/scratchptr/struct.SCRATCHPTR_SPEC.html" title="struct nrf52840_pac::ccm::scratchptr::SCRATCHPTR_SPEC">SCRATCHPTR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ccm/scratchptr/struct.R.html" title="struct nrf52840_pac::ccm::scratchptr::R">scratchptr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-33" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ccm/scratchptr.rs.html#69">source</a><a href="#associatedtype.Reader-33" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ccm/scratchptr/struct.R.html" title="struct nrf52840_pac::ccm::scratchptr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-SHORTS_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ccm/shorts.rs.html#114-116">source</a><a href="#impl-Readable-for-SHORTS_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::ccm::shorts::<a class="struct" href="../ccm/shorts/struct.SHORTS_SPEC.html" title="struct nrf52840_pac::ccm::shorts::SHORTS_SPEC">SHORTS_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ccm/shorts/struct.R.html" title="struct nrf52840_pac::ccm::shorts::R">shorts::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-34" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ccm/shorts.rs.html#115">source</a><a href="#associatedtype.Reader-34" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ccm/shorts/struct.R.html" title="struct nrf52840_pac::ccm::shorts::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-CTIV_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/clock/ctiv.rs.html#67-69">source</a><a href="#impl-Readable-for-CTIV_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../clock/ctiv/struct.CTIV_SPEC.html" title="struct nrf52840_pac::clock::ctiv::CTIV_SPEC">CTIV_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../clock/ctiv/struct.R.html" title="struct nrf52840_pac::clock::ctiv::R">ctiv::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-35" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/clock/ctiv.rs.html#68">source</a><a href="#associatedtype.Reader-35" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../clock/ctiv/struct.R.html" title="struct nrf52840_pac::clock::ctiv::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_CTSTARTED_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/clock/events_ctstarted.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_CTSTARTED_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../clock/events_ctstarted/struct.EVENTS_CTSTARTED_SPEC.html" title="struct nrf52840_pac::clock::events_ctstarted::EVENTS_CTSTARTED_SPEC">EVENTS_CTSTARTED_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../clock/events_ctstarted/struct.R.html" title="struct nrf52840_pac::clock::events_ctstarted::R">events_ctstarted::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-36" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/clock/events_ctstarted.rs.html#69">source</a><a href="#associatedtype.Reader-36" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../clock/events_ctstarted/struct.R.html" title="struct nrf52840_pac::clock::events_ctstarted::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_CTSTOPPED_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/clock/events_ctstopped.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_CTSTOPPED_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../clock/events_ctstopped/struct.EVENTS_CTSTOPPED_SPEC.html" title="struct nrf52840_pac::clock::events_ctstopped::EVENTS_CTSTOPPED_SPEC">EVENTS_CTSTOPPED_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../clock/events_ctstopped/struct.R.html" title="struct nrf52840_pac::clock::events_ctstopped::R">events_ctstopped::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-37" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/clock/events_ctstopped.rs.html#69">source</a><a href="#associatedtype.Reader-37" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../clock/events_ctstopped/struct.R.html" title="struct nrf52840_pac::clock::events_ctstopped::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_CTTO_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/clock/events_ctto.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_CTTO_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../clock/events_ctto/struct.EVENTS_CTTO_SPEC.html" title="struct nrf52840_pac::clock::events_ctto::EVENTS_CTTO_SPEC">EVENTS_CTTO_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../clock/events_ctto/struct.R.html" title="struct nrf52840_pac::clock::events_ctto::R">events_ctto::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-38" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/clock/events_ctto.rs.html#68">source</a><a href="#associatedtype.Reader-38" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../clock/events_ctto/struct.R.html" title="struct nrf52840_pac::clock::events_ctto::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_DONE_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/clock/events_done.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_DONE_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::clock::events_done::<a class="struct" href="../clock/events_done/struct.EVENTS_DONE_SPEC.html" title="struct nrf52840_pac::clock::events_done::EVENTS_DONE_SPEC">EVENTS_DONE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../clock/events_done/struct.R.html" title="struct nrf52840_pac::clock::events_done::R">events_done::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-39" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/clock/events_done.rs.html#68">source</a><a href="#associatedtype.Reader-39" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../clock/events_done/struct.R.html" title="struct nrf52840_pac::clock::events_done::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_HFCLKSTARTED_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/clock/events_hfclkstarted.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_HFCLKSTARTED_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../clock/events_hfclkstarted/struct.EVENTS_HFCLKSTARTED_SPEC.html" title="struct nrf52840_pac::clock::events_hfclkstarted::EVENTS_HFCLKSTARTED_SPEC">EVENTS_HFCLKSTARTED_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../clock/events_hfclkstarted/struct.R.html" title="struct nrf52840_pac::clock::events_hfclkstarted::R">events_hfclkstarted::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-40" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/clock/events_hfclkstarted.rs.html#69">source</a><a href="#associatedtype.Reader-40" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../clock/events_hfclkstarted/struct.R.html" title="struct nrf52840_pac::clock::events_hfclkstarted::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_LFCLKSTARTED_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/clock/events_lfclkstarted.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_LFCLKSTARTED_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../clock/events_lfclkstarted/struct.EVENTS_LFCLKSTARTED_SPEC.html" title="struct nrf52840_pac::clock::events_lfclkstarted::EVENTS_LFCLKSTARTED_SPEC">EVENTS_LFCLKSTARTED_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../clock/events_lfclkstarted/struct.R.html" title="struct nrf52840_pac::clock::events_lfclkstarted::R">events_lfclkstarted::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-41" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/clock/events_lfclkstarted.rs.html#69">source</a><a href="#associatedtype.Reader-41" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../clock/events_lfclkstarted/struct.R.html" title="struct nrf52840_pac::clock::events_lfclkstarted::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-HFCLKRUN_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/clock/hfclkrun.rs.html#65-67">source</a><a href="#impl-Readable-for-HFCLKRUN_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../clock/hfclkrun/struct.HFCLKRUN_SPEC.html" title="struct nrf52840_pac::clock::hfclkrun::HFCLKRUN_SPEC">HFCLKRUN_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../clock/hfclkrun/struct.R.html" title="struct nrf52840_pac::clock::hfclkrun::R">hfclkrun::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-42" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/clock/hfclkrun.rs.html#66">source</a><a href="#associatedtype.Reader-42" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../clock/hfclkrun/struct.R.html" title="struct nrf52840_pac::clock::hfclkrun::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-HFCLKSTAT_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/clock/hfclkstat.rs.html#106-108">source</a><a href="#impl-Readable-for-HFCLKSTAT_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../clock/hfclkstat/struct.HFCLKSTAT_SPEC.html" title="struct nrf52840_pac::clock::hfclkstat::HFCLKSTAT_SPEC">HFCLKSTAT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../clock/hfclkstat/struct.R.html" title="struct nrf52840_pac::clock::hfclkstat::R">hfclkstat::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-43" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/clock/hfclkstat.rs.html#107">source</a><a href="#associatedtype.Reader-43" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../clock/hfclkstat/struct.R.html" title="struct nrf52840_pac::clock::hfclkstat::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-HFXODEBOUNCE_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/clock/hfxodebounce.rs.html#116-118">source</a><a href="#impl-Readable-for-HFXODEBOUNCE_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../clock/hfxodebounce/struct.HFXODEBOUNCE_SPEC.html" title="struct nrf52840_pac::clock::hfxodebounce::HFXODEBOUNCE_SPEC">HFXODEBOUNCE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../clock/hfxodebounce/struct.R.html" title="struct nrf52840_pac::clock::hfxodebounce::R">hfxodebounce::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-44" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/clock/hfxodebounce.rs.html#117">source</a><a href="#associatedtype.Reader-44" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../clock/hfxodebounce/struct.R.html" title="struct nrf52840_pac::clock::hfxodebounce::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENCLR_SPEC-2" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/clock/intenclr.rs.html#457-459">source</a><a href="#impl-Readable-for-INTENCLR_SPEC-2" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::clock::intenclr::<a class="struct" href="../clock/intenclr/struct.INTENCLR_SPEC.html" title="struct nrf52840_pac::clock::intenclr::INTENCLR_SPEC">INTENCLR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../clock/intenclr/struct.R.html" title="struct nrf52840_pac::clock::intenclr::R">intenclr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-45" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/clock/intenclr.rs.html#458">source</a><a href="#associatedtype.Reader-45" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../clock/intenclr/struct.R.html" title="struct nrf52840_pac::clock::intenclr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENSET_SPEC-2" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/clock/intenset.rs.html#457-459">source</a><a href="#impl-Readable-for-INTENSET_SPEC-2" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::clock::intenset::<a class="struct" href="../clock/intenset/struct.INTENSET_SPEC.html" title="struct nrf52840_pac::clock::intenset::INTENSET_SPEC">INTENSET_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../clock/intenset/struct.R.html" title="struct nrf52840_pac::clock::intenset::R">intenset::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-46" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/clock/intenset.rs.html#458">source</a><a href="#associatedtype.Reader-46" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../clock/intenset/struct.R.html" title="struct nrf52840_pac::clock::intenset::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-LFCLKRUN_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/clock/lfclkrun.rs.html#65-67">source</a><a href="#impl-Readable-for-LFCLKRUN_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../clock/lfclkrun/struct.LFCLKRUN_SPEC.html" title="struct nrf52840_pac::clock::lfclkrun::LFCLKRUN_SPEC">LFCLKRUN_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../clock/lfclkrun/struct.R.html" title="struct nrf52840_pac::clock::lfclkrun::R">lfclkrun::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-47" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/clock/lfclkrun.rs.html#66">source</a><a href="#associatedtype.Reader-47" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../clock/lfclkrun/struct.R.html" title="struct nrf52840_pac::clock::lfclkrun::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-LFCLKSRC_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/clock/lfclksrc.rs.html#248-250">source</a><a href="#impl-Readable-for-LFCLKSRC_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../clock/lfclksrc/struct.LFCLKSRC_SPEC.html" title="struct nrf52840_pac::clock::lfclksrc::LFCLKSRC_SPEC">LFCLKSRC_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../clock/lfclksrc/struct.R.html" title="struct nrf52840_pac::clock::lfclksrc::R">lfclksrc::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-48" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/clock/lfclksrc.rs.html#249">source</a><a href="#associatedtype.Reader-48" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../clock/lfclksrc/struct.R.html" title="struct nrf52840_pac::clock::lfclksrc::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-LFCLKSRCCOPY_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/clock/lfclksrccopy.rs.html#75-77">source</a><a href="#impl-Readable-for-LFCLKSRCCOPY_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../clock/lfclksrccopy/struct.LFCLKSRCCOPY_SPEC.html" title="struct nrf52840_pac::clock::lfclksrccopy::LFCLKSRCCOPY_SPEC">LFCLKSRCCOPY_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../clock/lfclksrccopy/struct.R.html" title="struct nrf52840_pac::clock::lfclksrccopy::R">lfclksrccopy::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-49" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/clock/lfclksrccopy.rs.html#76">source</a><a href="#associatedtype.Reader-49" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../clock/lfclksrccopy/struct.R.html" title="struct nrf52840_pac::clock::lfclksrccopy::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-LFCLKSTAT_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/clock/lfclkstat.rs.html#116-118">source</a><a href="#impl-Readable-for-LFCLKSTAT_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../clock/lfclkstat/struct.LFCLKSTAT_SPEC.html" title="struct nrf52840_pac::clock::lfclkstat::LFCLKSTAT_SPEC">LFCLKSTAT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../clock/lfclkstat/struct.R.html" title="struct nrf52840_pac::clock::lfclkstat::R">lfclkstat::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-50" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/clock/lfclkstat.rs.html#117">source</a><a href="#associatedtype.Reader-50" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../clock/lfclkstat/struct.R.html" title="struct nrf52840_pac::clock::lfclkstat::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-LFRCMODE_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/clock/lfrcmode.rs.html#173-175">source</a><a href="#impl-Readable-for-LFRCMODE_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../clock/lfrcmode/struct.LFRCMODE_SPEC.html" title="struct nrf52840_pac::clock::lfrcmode::LFRCMODE_SPEC">LFRCMODE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../clock/lfrcmode/struct.R.html" title="struct nrf52840_pac::clock::lfrcmode::R">lfrcmode::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-51" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/clock/lfrcmode.rs.html#174">source</a><a href="#associatedtype.Reader-51" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../clock/lfrcmode/struct.R.html" title="struct nrf52840_pac::clock::lfrcmode::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-TRACECONFIG_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/clock/traceconfig.rs.html#218-220">source</a><a href="#impl-Readable-for-TRACECONFIG_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../clock/traceconfig/struct.TRACECONFIG_SPEC.html" title="struct nrf52840_pac::clock::traceconfig::TRACECONFIG_SPEC">TRACECONFIG_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../clock/traceconfig/struct.R.html" title="struct nrf52840_pac::clock::traceconfig::R">traceconfig::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-52" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/clock/traceconfig.rs.html#219">source</a><a href="#associatedtype.Reader-52" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../clock/traceconfig/struct.R.html" title="struct nrf52840_pac::clock::traceconfig::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ENABLE_SPEC-2" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/comp/enable.rs.html#115-117">source</a><a href="#impl-Readable-for-ENABLE_SPEC-2" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::comp::enable::<a class="struct" href="../comp/enable/struct.ENABLE_SPEC.html" title="struct nrf52840_pac::comp::enable::ENABLE_SPEC">ENABLE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../comp/enable/struct.R.html" title="struct nrf52840_pac::comp::enable::R">enable::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-53" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/comp/enable.rs.html#116">source</a><a href="#associatedtype.Reader-53" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../comp/enable/struct.R.html" title="struct nrf52840_pac::comp::enable::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_CROSS_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/comp/events_cross.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_CROSS_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::comp::events_cross::<a class="struct" href="../comp/events_cross/struct.EVENTS_CROSS_SPEC.html" title="struct nrf52840_pac::comp::events_cross::EVENTS_CROSS_SPEC">EVENTS_CROSS_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../comp/events_cross/struct.R.html" title="struct nrf52840_pac::comp::events_cross::R">events_cross::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-54" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/comp/events_cross.rs.html#68">source</a><a href="#associatedtype.Reader-54" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../comp/events_cross/struct.R.html" title="struct nrf52840_pac::comp::events_cross::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_DOWN_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/comp/events_down.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_DOWN_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::comp::events_down::<a class="struct" href="../comp/events_down/struct.EVENTS_DOWN_SPEC.html" title="struct nrf52840_pac::comp::events_down::EVENTS_DOWN_SPEC">EVENTS_DOWN_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../comp/events_down/struct.R.html" title="struct nrf52840_pac::comp::events_down::R">events_down::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-55" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/comp/events_down.rs.html#68">source</a><a href="#associatedtype.Reader-55" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../comp/events_down/struct.R.html" title="struct nrf52840_pac::comp::events_down::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_READY_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/comp/events_ready.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_READY_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::comp::events_ready::<a class="struct" href="../comp/events_ready/struct.EVENTS_READY_SPEC.html" title="struct nrf52840_pac::comp::events_ready::EVENTS_READY_SPEC">EVENTS_READY_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../comp/events_ready/struct.R.html" title="struct nrf52840_pac::comp::events_ready::R">events_ready::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-56" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/comp/events_ready.rs.html#68">source</a><a href="#associatedtype.Reader-56" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../comp/events_ready/struct.R.html" title="struct nrf52840_pac::comp::events_ready::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_UP_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/comp/events_up.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_UP_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::comp::events_up::<a class="struct" href="../comp/events_up/struct.EVENTS_UP_SPEC.html" title="struct nrf52840_pac::comp::events_up::EVENTS_UP_SPEC">EVENTS_UP_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../comp/events_up/struct.R.html" title="struct nrf52840_pac::comp::events_up::R">events_up::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-57" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/comp/events_up.rs.html#68">source</a><a href="#associatedtype.Reader-57" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../comp/events_up/struct.R.html" title="struct nrf52840_pac::comp::events_up::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EXTREFSEL_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/comp/extrefsel.rs.html#194-196">source</a><a href="#impl-Readable-for-EXTREFSEL_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::comp::extrefsel::<a class="struct" href="../comp/extrefsel/struct.EXTREFSEL_SPEC.html" title="struct nrf52840_pac::comp::extrefsel::EXTREFSEL_SPEC">EXTREFSEL_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../comp/extrefsel/struct.R.html" title="struct nrf52840_pac::comp::extrefsel::R">extrefsel::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-58" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/comp/extrefsel.rs.html#195">source</a><a href="#associatedtype.Reader-58" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../comp/extrefsel/struct.R.html" title="struct nrf52840_pac::comp::extrefsel::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-HYST_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/comp/hyst.rs.html#113-115">source</a><a href="#impl-Readable-for-HYST_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::comp::hyst::<a class="struct" href="../comp/hyst/struct.HYST_SPEC.html" title="struct nrf52840_pac::comp::hyst::HYST_SPEC">HYST_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../comp/hyst/struct.R.html" title="struct nrf52840_pac::comp::hyst::R">hyst::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-59" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/comp/hyst.rs.html#114">source</a><a href="#associatedtype.Reader-59" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../comp/hyst/struct.R.html" title="struct nrf52840_pac::comp::hyst::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTEN_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/comp/inten.rs.html#293-295">source</a><a href="#impl-Readable-for-INTEN_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::comp::inten::<a class="struct" href="../comp/inten/struct.INTEN_SPEC.html" title="struct nrf52840_pac::comp::inten::INTEN_SPEC">INTEN_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../comp/inten/struct.R.html" title="struct nrf52840_pac::comp::inten::R">inten::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-60" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/comp/inten.rs.html#294">source</a><a href="#associatedtype.Reader-60" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../comp/inten/struct.R.html" title="struct nrf52840_pac::comp::inten::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENCLR_SPEC-3" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/comp/intenclr.rs.html#321-323">source</a><a href="#impl-Readable-for-INTENCLR_SPEC-3" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::comp::intenclr::<a class="struct" href="../comp/intenclr/struct.INTENCLR_SPEC.html" title="struct nrf52840_pac::comp::intenclr::INTENCLR_SPEC">INTENCLR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../comp/intenclr/struct.R.html" title="struct nrf52840_pac::comp::intenclr::R">intenclr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-61" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/comp/intenclr.rs.html#322">source</a><a href="#associatedtype.Reader-61" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../comp/intenclr/struct.R.html" title="struct nrf52840_pac::comp::intenclr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENSET_SPEC-3" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/comp/intenset.rs.html#321-323">source</a><a href="#impl-Readable-for-INTENSET_SPEC-3" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::comp::intenset::<a class="struct" href="../comp/intenset/struct.INTENSET_SPEC.html" title="struct nrf52840_pac::comp::intenset::INTENSET_SPEC">INTENSET_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../comp/intenset/struct.R.html" title="struct nrf52840_pac::comp::intenset::R">intenset::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-62" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/comp/intenset.rs.html#322">source</a><a href="#associatedtype.Reader-62" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../comp/intenset/struct.R.html" title="struct nrf52840_pac::comp::intenset::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-MODE_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/comp/mode.rs.html#188-190">source</a><a href="#impl-Readable-for-MODE_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::comp::mode::<a class="struct" href="../comp/mode/struct.MODE_SPEC.html" title="struct nrf52840_pac::comp::mode::MODE_SPEC">MODE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../comp/mode/struct.R.html" title="struct nrf52840_pac::comp::mode::R">mode::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-63" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/comp/mode.rs.html#189">source</a><a href="#associatedtype.Reader-63" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../comp/mode/struct.R.html" title="struct nrf52840_pac::comp::mode::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-PSEL_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/comp/psel.rs.html#193-195">source</a><a href="#impl-Readable-for-PSEL_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::comp::psel::<a class="struct" href="../comp/psel/struct.PSEL_SPEC.html" title="struct nrf52840_pac::comp::psel::PSEL_SPEC">PSEL_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../comp/psel/struct.R.html" title="struct nrf52840_pac::comp::psel::R">psel::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-64" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/comp/psel.rs.html#194">source</a><a href="#associatedtype.Reader-64" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../comp/psel/struct.R.html" title="struct nrf52840_pac::comp::psel::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-REFSEL_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/comp/refsel.rs.html#154-156">source</a><a href="#impl-Readable-for-REFSEL_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::comp::refsel::<a class="struct" href="../comp/refsel/struct.REFSEL_SPEC.html" title="struct nrf52840_pac::comp::refsel::REFSEL_SPEC">REFSEL_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../comp/refsel/struct.R.html" title="struct nrf52840_pac::comp::refsel::R">refsel::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-65" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/comp/refsel.rs.html#155">source</a><a href="#associatedtype.Reader-65" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../comp/refsel/struct.R.html" title="struct nrf52840_pac::comp::refsel::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-RESULT_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/comp/result.rs.html#65-67">source</a><a href="#impl-Readable-for-RESULT_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::comp::result::<a class="struct" href="../comp/result/struct.RESULT_SPEC.html" title="struct nrf52840_pac::comp::result::RESULT_SPEC">RESULT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../comp/result/struct.R.html" title="struct nrf52840_pac::comp::result::R">result::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-66" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/comp/result.rs.html#66">source</a><a href="#associatedtype.Reader-66" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../comp/result/struct.R.html" title="struct nrf52840_pac::comp::result::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-SHORTS_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/comp/shorts.rs.html#354-356">source</a><a href="#impl-Readable-for-SHORTS_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::comp::shorts::<a class="struct" href="../comp/shorts/struct.SHORTS_SPEC.html" title="struct nrf52840_pac::comp::shorts::SHORTS_SPEC">SHORTS_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../comp/shorts/struct.R.html" title="struct nrf52840_pac::comp::shorts::R">shorts::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-67" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/comp/shorts.rs.html#355">source</a><a href="#associatedtype.Reader-67" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../comp/shorts/struct.R.html" title="struct nrf52840_pac::comp::shorts::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-TH_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/comp/th.rs.html#81-83">source</a><a href="#impl-Readable-for-TH_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../comp/th/struct.TH_SPEC.html" title="struct nrf52840_pac::comp::th::TH_SPEC">TH_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../comp/th/struct.R.html" title="struct nrf52840_pac::comp::th::R">th::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-68" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/comp/th.rs.html#82">source</a><a href="#associatedtype.Reader-68" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../comp/th/struct.R.html" title="struct nrf52840_pac::comp::th::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ENABLE_SPEC-3" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/cryptocell/enable.rs.html#113-115">source</a><a href="#impl-Readable-for-ENABLE_SPEC-3" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::cryptocell::enable::<a class="struct" href="../cryptocell/enable/struct.ENABLE_SPEC.html" title="struct nrf52840_pac::cryptocell::enable::ENABLE_SPEC">ENABLE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../cryptocell/enable/struct.R.html" title="struct nrf52840_pac::cryptocell::enable::R">enable::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-69" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/cryptocell/enable.rs.html#114">source</a><a href="#associatedtype.Reader-69" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../cryptocell/enable/struct.R.html" title="struct nrf52840_pac::cryptocell::enable::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ECBDATAPTR_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ecb/ecbdataptr.rs.html#68-70">source</a><a href="#impl-Readable-for-ECBDATAPTR_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../ecb/ecbdataptr/struct.ECBDATAPTR_SPEC.html" title="struct nrf52840_pac::ecb::ecbdataptr::ECBDATAPTR_SPEC">ECBDATAPTR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ecb/ecbdataptr/struct.R.html" title="struct nrf52840_pac::ecb::ecbdataptr::R">ecbdataptr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-70" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ecb/ecbdataptr.rs.html#69">source</a><a href="#associatedtype.Reader-70" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ecb/ecbdataptr/struct.R.html" title="struct nrf52840_pac::ecb::ecbdataptr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_ENDECB_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ecb/events_endecb.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_ENDECB_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../ecb/events_endecb/struct.EVENTS_ENDECB_SPEC.html" title="struct nrf52840_pac::ecb::events_endecb::EVENTS_ENDECB_SPEC">EVENTS_ENDECB_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ecb/events_endecb/struct.R.html" title="struct nrf52840_pac::ecb::events_endecb::R">events_endecb::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-71" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ecb/events_endecb.rs.html#68">source</a><a href="#associatedtype.Reader-71" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ecb/events_endecb/struct.R.html" title="struct nrf52840_pac::ecb::events_endecb::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_ERRORECB_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ecb/events_errorecb.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_ERRORECB_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../ecb/events_errorecb/struct.EVENTS_ERRORECB_SPEC.html" title="struct nrf52840_pac::ecb::events_errorecb::EVENTS_ERRORECB_SPEC">EVENTS_ERRORECB_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ecb/events_errorecb/struct.R.html" title="struct nrf52840_pac::ecb::events_errorecb::R">events_errorecb::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-72" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ecb/events_errorecb.rs.html#69">source</a><a href="#associatedtype.Reader-72" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ecb/events_errorecb/struct.R.html" title="struct nrf52840_pac::ecb::events_errorecb::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENCLR_SPEC-4" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ecb/intenclr.rs.html#187-189">source</a><a href="#impl-Readable-for-INTENCLR_SPEC-4" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::ecb::intenclr::<a class="struct" href="../ecb/intenclr/struct.INTENCLR_SPEC.html" title="struct nrf52840_pac::ecb::intenclr::INTENCLR_SPEC">INTENCLR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ecb/intenclr/struct.R.html" title="struct nrf52840_pac::ecb::intenclr::R">intenclr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-73" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ecb/intenclr.rs.html#188">source</a><a href="#associatedtype.Reader-73" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ecb/intenclr/struct.R.html" title="struct nrf52840_pac::ecb::intenclr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENSET_SPEC-4" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ecb/intenset.rs.html#187-189">source</a><a href="#impl-Readable-for-INTENSET_SPEC-4" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::ecb::intenset::<a class="struct" href="../ecb/intenset/struct.INTENSET_SPEC.html" title="struct nrf52840_pac::ecb::intenset::INTENSET_SPEC">INTENSET_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ecb/intenset/struct.R.html" title="struct nrf52840_pac::ecb::intenset::R">intenset::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-74" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ecb/intenset.rs.html#188">source</a><a href="#associatedtype.Reader-74" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ecb/intenset/struct.R.html" title="struct nrf52840_pac::ecb::intenset::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_TRIGGERED_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/egu0/events_triggered.rs.html#69-71">source</a><a href="#impl-Readable-for-EVENTS_TRIGGERED_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../egu0/events_triggered/struct.EVENTS_TRIGGERED_SPEC.html" title="struct nrf52840_pac::egu0::events_triggered::EVENTS_TRIGGERED_SPEC">EVENTS_TRIGGERED_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../egu0/events_triggered/struct.R.html" title="struct nrf52840_pac::egu0::events_triggered::R">events_triggered::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-75" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/egu0/events_triggered.rs.html#70">source</a><a href="#associatedtype.Reader-75" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../egu0/events_triggered/struct.R.html" title="struct nrf52840_pac::egu0::events_triggered::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTEN_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/egu0/inten.rs.html#1093-1095">source</a><a href="#impl-Readable-for-INTEN_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::egu0::inten::<a class="struct" href="../egu0/inten/struct.INTEN_SPEC.html" title="struct nrf52840_pac::egu0::inten::INTEN_SPEC">INTEN_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../egu0/inten/struct.R.html" title="struct nrf52840_pac::egu0::inten::R">inten::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-76" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/egu0/inten.rs.html#1094">source</a><a href="#associatedtype.Reader-76" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../egu0/inten/struct.R.html" title="struct nrf52840_pac::egu0::inten::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENCLR_SPEC-5" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/egu0/intenclr.rs.html#1227-1229">source</a><a href="#impl-Readable-for-INTENCLR_SPEC-5" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::egu0::intenclr::<a class="struct" href="../egu0/intenclr/struct.INTENCLR_SPEC.html" title="struct nrf52840_pac::egu0::intenclr::INTENCLR_SPEC">INTENCLR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../egu0/intenclr/struct.R.html" title="struct nrf52840_pac::egu0::intenclr::R">intenclr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-77" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/egu0/intenclr.rs.html#1228">source</a><a href="#associatedtype.Reader-77" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../egu0/intenclr/struct.R.html" title="struct nrf52840_pac::egu0::intenclr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENSET_SPEC-5" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/egu0/intenset.rs.html#1227-1229">source</a><a href="#impl-Readable-for-INTENSET_SPEC-5" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::egu0::intenset::<a class="struct" href="../egu0/intenset/struct.INTENSET_SPEC.html" title="struct nrf52840_pac::egu0::intenset::INTENSET_SPEC">INTENSET_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../egu0/intenset/struct.R.html" title="struct nrf52840_pac::egu0::intenset::R">intenset::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-78" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/egu0/intenset.rs.html#1228">source</a><a href="#associatedtype.Reader-78" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../egu0/intenset/struct.R.html" title="struct nrf52840_pac::egu0::intenset::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-CODEPAGESIZE_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/codepagesize.rs.html#31-33">source</a><a href="#impl-Readable-for-CODEPAGESIZE_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../ficr/codepagesize/struct.CODEPAGESIZE_SPEC.html" title="struct nrf52840_pac::ficr::codepagesize::CODEPAGESIZE_SPEC">CODEPAGESIZE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ficr/codepagesize/struct.R.html" title="struct nrf52840_pac::ficr::codepagesize::R">codepagesize::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-79" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/codepagesize.rs.html#32">source</a><a href="#associatedtype.Reader-79" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ficr/codepagesize/struct.R.html" title="struct nrf52840_pac::ficr::codepagesize::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-CODESIZE_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/codesize.rs.html#31-33">source</a><a href="#impl-Readable-for-CODESIZE_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../ficr/codesize/struct.CODESIZE_SPEC.html" title="struct nrf52840_pac::ficr::codesize::CODESIZE_SPEC">CODESIZE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ficr/codesize/struct.R.html" title="struct nrf52840_pac::ficr::codesize::R">codesize::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-80" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/codesize.rs.html#32">source</a><a href="#associatedtype.Reader-80" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ficr/codesize/struct.R.html" title="struct nrf52840_pac::ficr::codesize::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-DEVICEADDR_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/deviceaddr.rs.html#31-33">source</a><a href="#impl-Readable-for-DEVICEADDR_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../ficr/deviceaddr/struct.DEVICEADDR_SPEC.html" title="struct nrf52840_pac::ficr::deviceaddr::DEVICEADDR_SPEC">DEVICEADDR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ficr/deviceaddr/struct.R.html" title="struct nrf52840_pac::ficr::deviceaddr::R">deviceaddr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-81" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/deviceaddr.rs.html#32">source</a><a href="#associatedtype.Reader-81" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ficr/deviceaddr/struct.R.html" title="struct nrf52840_pac::ficr::deviceaddr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-DEVICEADDRTYPE_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/deviceaddrtype.rs.html#65-67">source</a><a href="#impl-Readable-for-DEVICEADDRTYPE_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../ficr/deviceaddrtype/struct.DEVICEADDRTYPE_SPEC.html" title="struct nrf52840_pac::ficr::deviceaddrtype::DEVICEADDRTYPE_SPEC">DEVICEADDRTYPE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ficr/deviceaddrtype/struct.R.html" title="struct nrf52840_pac::ficr::deviceaddrtype::R">deviceaddrtype::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-82" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/deviceaddrtype.rs.html#66">source</a><a href="#associatedtype.Reader-82" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ficr/deviceaddrtype/struct.R.html" title="struct nrf52840_pac::ficr::deviceaddrtype::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-DEVICEID_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/deviceid.rs.html#31-33">source</a><a href="#impl-Readable-for-DEVICEID_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../ficr/deviceid/struct.DEVICEID_SPEC.html" title="struct nrf52840_pac::ficr::deviceid::DEVICEID_SPEC">DEVICEID_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ficr/deviceid/struct.R.html" title="struct nrf52840_pac::ficr::deviceid::R">deviceid::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-83" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/deviceid.rs.html#32">source</a><a href="#associatedtype.Reader-83" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ficr/deviceid/struct.R.html" title="struct nrf52840_pac::ficr::deviceid::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ER_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/er.rs.html#31-33">source</a><a href="#impl-Readable-for-ER_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../ficr/er/struct.ER_SPEC.html" title="struct nrf52840_pac::ficr::er::ER_SPEC">ER_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ficr/er/struct.R.html" title="struct nrf52840_pac::ficr::er::R">er::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-84" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/er.rs.html#32">source</a><a href="#associatedtype.Reader-84" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ficr/er/struct.R.html" title="struct nrf52840_pac::ficr::er::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-FLASH_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/info/flash.rs.html#99-101">source</a><a href="#impl-Readable-for-FLASH_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../ficr/info/flash/struct.FLASH_SPEC.html" title="struct nrf52840_pac::ficr::info::flash::FLASH_SPEC">FLASH_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ficr/info/flash/struct.R.html" title="struct nrf52840_pac::ficr::info::flash::R">flash::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-85" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/info/flash.rs.html#100">source</a><a href="#associatedtype.Reader-85" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ficr/info/flash/struct.R.html" title="struct nrf52840_pac::ficr::info::flash::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-PACKAGE_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/info/package.rs.html#67-69">source</a><a href="#impl-Readable-for-PACKAGE_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../ficr/info/package/struct.PACKAGE_SPEC.html" title="struct nrf52840_pac::ficr::info::package::PACKAGE_SPEC">PACKAGE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ficr/info/package/struct.R.html" title="struct nrf52840_pac::ficr::info::package::R">package::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-86" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/info/package.rs.html#68">source</a><a href="#associatedtype.Reader-86" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ficr/info/package/struct.R.html" title="struct nrf52840_pac::ficr::info::package::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-PART_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/info/part.rs.html#67-69">source</a><a href="#impl-Readable-for-PART_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../ficr/info/part/struct.PART_SPEC.html" title="struct nrf52840_pac::ficr::info::part::PART_SPEC">PART_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ficr/info/part/struct.R.html" title="struct nrf52840_pac::ficr::info::part::R">part::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-87" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/info/part.rs.html#68">source</a><a href="#associatedtype.Reader-87" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ficr/info/part/struct.R.html" title="struct nrf52840_pac::ficr::info::part::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-RAM_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/info/ram.rs.html#99-101">source</a><a href="#impl-Readable-for-RAM_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../ficr/info/ram/struct.RAM_SPEC.html" title="struct nrf52840_pac::ficr::info::ram::RAM_SPEC">RAM_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ficr/info/ram/struct.R.html" title="struct nrf52840_pac::ficr::info::ram::R">ram::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-88" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/info/ram.rs.html#100">source</a><a href="#associatedtype.Reader-88" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ficr/info/ram/struct.R.html" title="struct nrf52840_pac::ficr::info::ram::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-UNUSED8_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/info/unused8.rs.html#51-53">source</a><a href="#impl-Readable-for-UNUSED8_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../ficr/info/unused8/struct.UNUSED8_SPEC.html" title="struct nrf52840_pac::ficr::info::unused8::UNUSED8_SPEC">UNUSED8_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ficr/info/unused8/struct.R.html" title="struct nrf52840_pac::ficr::info::unused8::R">unused8::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-89" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/info/unused8.rs.html#52">source</a><a href="#associatedtype.Reader-89" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ficr/info/unused8/struct.R.html" title="struct nrf52840_pac::ficr::info::unused8::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-VARIANT_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/info/variant.rs.html#115-117">source</a><a href="#impl-Readable-for-VARIANT_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../ficr/info/variant/struct.VARIANT_SPEC.html" title="struct nrf52840_pac::ficr::info::variant::VARIANT_SPEC">VARIANT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ficr/info/variant/struct.R.html" title="struct nrf52840_pac::ficr::info::variant::R">variant::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-90" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/info/variant.rs.html#116">source</a><a href="#associatedtype.Reader-90" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ficr/info/variant/struct.R.html" title="struct nrf52840_pac::ficr::info::variant::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-IR_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/ir.rs.html#31-33">source</a><a href="#impl-Readable-for-IR_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../ficr/ir/struct.IR_SPEC.html" title="struct nrf52840_pac::ficr::ir::IR_SPEC">IR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ficr/ir/struct.R.html" title="struct nrf52840_pac::ficr::ir::R">ir::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-91" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/ir.rs.html#32">source</a><a href="#associatedtype.Reader-91" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ficr/ir/struct.R.html" title="struct nrf52840_pac::ficr::ir::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-TAGHEADER0_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/nfc/tagheader0.rs.html#52-54">source</a><a href="#impl-Readable-for-TAGHEADER0_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../ficr/nfc/tagheader0/struct.TAGHEADER0_SPEC.html" title="struct nrf52840_pac::ficr::nfc::tagheader0::TAGHEADER0_SPEC">TAGHEADER0_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ficr/nfc/tagheader0/struct.R.html" title="struct nrf52840_pac::ficr::nfc::tagheader0::R">tagheader0::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-92" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/nfc/tagheader0.rs.html#53">source</a><a href="#associatedtype.Reader-92" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ficr/nfc/tagheader0/struct.R.html" title="struct nrf52840_pac::ficr::nfc::tagheader0::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-TAGHEADER1_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/nfc/tagheader1.rs.html#52-54">source</a><a href="#impl-Readable-for-TAGHEADER1_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../ficr/nfc/tagheader1/struct.TAGHEADER1_SPEC.html" title="struct nrf52840_pac::ficr::nfc::tagheader1::TAGHEADER1_SPEC">TAGHEADER1_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ficr/nfc/tagheader1/struct.R.html" title="struct nrf52840_pac::ficr::nfc::tagheader1::R">tagheader1::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-93" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/nfc/tagheader1.rs.html#53">source</a><a href="#associatedtype.Reader-93" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ficr/nfc/tagheader1/struct.R.html" title="struct nrf52840_pac::ficr::nfc::tagheader1::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-TAGHEADER2_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/nfc/tagheader2.rs.html#52-54">source</a><a href="#impl-Readable-for-TAGHEADER2_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../ficr/nfc/tagheader2/struct.TAGHEADER2_SPEC.html" title="struct nrf52840_pac::ficr::nfc::tagheader2::TAGHEADER2_SPEC">TAGHEADER2_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ficr/nfc/tagheader2/struct.R.html" title="struct nrf52840_pac::ficr::nfc::tagheader2::R">tagheader2::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-94" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/nfc/tagheader2.rs.html#53">source</a><a href="#associatedtype.Reader-94" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ficr/nfc/tagheader2/struct.R.html" title="struct nrf52840_pac::ficr::nfc::tagheader2::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-TAGHEADER3_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/nfc/tagheader3.rs.html#52-54">source</a><a href="#impl-Readable-for-TAGHEADER3_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../ficr/nfc/tagheader3/struct.TAGHEADER3_SPEC.html" title="struct nrf52840_pac::ficr::nfc::tagheader3::TAGHEADER3_SPEC">TAGHEADER3_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ficr/nfc/tagheader3/struct.R.html" title="struct nrf52840_pac::ficr::nfc::tagheader3::R">tagheader3::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-95" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/nfc/tagheader3.rs.html#53">source</a><a href="#associatedtype.Reader-95" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ficr/nfc/tagheader3/struct.R.html" title="struct nrf52840_pac::ficr::nfc::tagheader3::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-PRODTEST_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/prodtest.rs.html#67-69">source</a><a href="#impl-Readable-for-PRODTEST_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../ficr/prodtest/struct.PRODTEST_SPEC.html" title="struct nrf52840_pac::ficr::prodtest::PRODTEST_SPEC">PRODTEST_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ficr/prodtest/struct.R.html" title="struct nrf52840_pac::ficr::prodtest::R">prodtest::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-96" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/prodtest.rs.html#68">source</a><a href="#associatedtype.Reader-96" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ficr/prodtest/struct.R.html" title="struct nrf52840_pac::ficr::prodtest::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-A0_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/temp/a0.rs.html#31-33">source</a><a href="#impl-Readable-for-A0_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::ficr::temp::a0::<a class="struct" href="../ficr/temp/a0/struct.A0_SPEC.html" title="struct nrf52840_pac::ficr::temp::a0::A0_SPEC">A0_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ficr/temp/a0/struct.R.html" title="struct nrf52840_pac::ficr::temp::a0::R">a0::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-97" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/temp/a0.rs.html#32">source</a><a href="#associatedtype.Reader-97" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ficr/temp/a0/struct.R.html" title="struct nrf52840_pac::ficr::temp::a0::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-A1_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/temp/a1.rs.html#31-33">source</a><a href="#impl-Readable-for-A1_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::ficr::temp::a1::<a class="struct" href="../ficr/temp/a1/struct.A1_SPEC.html" title="struct nrf52840_pac::ficr::temp::a1::A1_SPEC">A1_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ficr/temp/a1/struct.R.html" title="struct nrf52840_pac::ficr::temp::a1::R">a1::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-98" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/temp/a1.rs.html#32">source</a><a href="#associatedtype.Reader-98" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ficr/temp/a1/struct.R.html" title="struct nrf52840_pac::ficr::temp::a1::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-A2_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/temp/a2.rs.html#31-33">source</a><a href="#impl-Readable-for-A2_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::ficr::temp::a2::<a class="struct" href="../ficr/temp/a2/struct.A2_SPEC.html" title="struct nrf52840_pac::ficr::temp::a2::A2_SPEC">A2_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ficr/temp/a2/struct.R.html" title="struct nrf52840_pac::ficr::temp::a2::R">a2::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-99" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/temp/a2.rs.html#32">source</a><a href="#associatedtype.Reader-99" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ficr/temp/a2/struct.R.html" title="struct nrf52840_pac::ficr::temp::a2::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-A3_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/temp/a3.rs.html#31-33">source</a><a href="#impl-Readable-for-A3_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::ficr::temp::a3::<a class="struct" href="../ficr/temp/a3/struct.A3_SPEC.html" title="struct nrf52840_pac::ficr::temp::a3::A3_SPEC">A3_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ficr/temp/a3/struct.R.html" title="struct nrf52840_pac::ficr::temp::a3::R">a3::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-100" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/temp/a3.rs.html#32">source</a><a href="#associatedtype.Reader-100" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ficr/temp/a3/struct.R.html" title="struct nrf52840_pac::ficr::temp::a3::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-A4_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/temp/a4.rs.html#31-33">source</a><a href="#impl-Readable-for-A4_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::ficr::temp::a4::<a class="struct" href="../ficr/temp/a4/struct.A4_SPEC.html" title="struct nrf52840_pac::ficr::temp::a4::A4_SPEC">A4_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ficr/temp/a4/struct.R.html" title="struct nrf52840_pac::ficr::temp::a4::R">a4::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-101" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/temp/a4.rs.html#32">source</a><a href="#associatedtype.Reader-101" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ficr/temp/a4/struct.R.html" title="struct nrf52840_pac::ficr::temp::a4::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-A5_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/temp/a5.rs.html#31-33">source</a><a href="#impl-Readable-for-A5_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::ficr::temp::a5::<a class="struct" href="../ficr/temp/a5/struct.A5_SPEC.html" title="struct nrf52840_pac::ficr::temp::a5::A5_SPEC">A5_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ficr/temp/a5/struct.R.html" title="struct nrf52840_pac::ficr::temp::a5::R">a5::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-102" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/temp/a5.rs.html#32">source</a><a href="#associatedtype.Reader-102" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ficr/temp/a5/struct.R.html" title="struct nrf52840_pac::ficr::temp::a5::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-B0_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/temp/b0.rs.html#31-33">source</a><a href="#impl-Readable-for-B0_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::ficr::temp::b0::<a class="struct" href="../ficr/temp/b0/struct.B0_SPEC.html" title="struct nrf52840_pac::ficr::temp::b0::B0_SPEC">B0_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ficr/temp/b0/struct.R.html" title="struct nrf52840_pac::ficr::temp::b0::R">b0::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-103" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/temp/b0.rs.html#32">source</a><a href="#associatedtype.Reader-103" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ficr/temp/b0/struct.R.html" title="struct nrf52840_pac::ficr::temp::b0::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-B1_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/temp/b1.rs.html#31-33">source</a><a href="#impl-Readable-for-B1_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::ficr::temp::b1::<a class="struct" href="../ficr/temp/b1/struct.B1_SPEC.html" title="struct nrf52840_pac::ficr::temp::b1::B1_SPEC">B1_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ficr/temp/b1/struct.R.html" title="struct nrf52840_pac::ficr::temp::b1::R">b1::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-104" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/temp/b1.rs.html#32">source</a><a href="#associatedtype.Reader-104" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ficr/temp/b1/struct.R.html" title="struct nrf52840_pac::ficr::temp::b1::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-B2_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/temp/b2.rs.html#31-33">source</a><a href="#impl-Readable-for-B2_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::ficr::temp::b2::<a class="struct" href="../ficr/temp/b2/struct.B2_SPEC.html" title="struct nrf52840_pac::ficr::temp::b2::B2_SPEC">B2_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ficr/temp/b2/struct.R.html" title="struct nrf52840_pac::ficr::temp::b2::R">b2::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-105" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/temp/b2.rs.html#32">source</a><a href="#associatedtype.Reader-105" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ficr/temp/b2/struct.R.html" title="struct nrf52840_pac::ficr::temp::b2::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-B3_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/temp/b3.rs.html#31-33">source</a><a href="#impl-Readable-for-B3_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::ficr::temp::b3::<a class="struct" href="../ficr/temp/b3/struct.B3_SPEC.html" title="struct nrf52840_pac::ficr::temp::b3::B3_SPEC">B3_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ficr/temp/b3/struct.R.html" title="struct nrf52840_pac::ficr::temp::b3::R">b3::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-106" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/temp/b3.rs.html#32">source</a><a href="#associatedtype.Reader-106" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ficr/temp/b3/struct.R.html" title="struct nrf52840_pac::ficr::temp::b3::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-B4_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/temp/b4.rs.html#31-33">source</a><a href="#impl-Readable-for-B4_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::ficr::temp::b4::<a class="struct" href="../ficr/temp/b4/struct.B4_SPEC.html" title="struct nrf52840_pac::ficr::temp::b4::B4_SPEC">B4_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ficr/temp/b4/struct.R.html" title="struct nrf52840_pac::ficr::temp::b4::R">b4::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-107" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/temp/b4.rs.html#32">source</a><a href="#associatedtype.Reader-107" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ficr/temp/b4/struct.R.html" title="struct nrf52840_pac::ficr::temp::b4::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-B5_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/temp/b5.rs.html#31-33">source</a><a href="#impl-Readable-for-B5_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::ficr::temp::b5::<a class="struct" href="../ficr/temp/b5/struct.B5_SPEC.html" title="struct nrf52840_pac::ficr::temp::b5::B5_SPEC">B5_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ficr/temp/b5/struct.R.html" title="struct nrf52840_pac::ficr::temp::b5::R">b5::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-108" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/temp/b5.rs.html#32">source</a><a href="#associatedtype.Reader-108" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ficr/temp/b5/struct.R.html" title="struct nrf52840_pac::ficr::temp::b5::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-T0_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/temp/t0.rs.html#31-33">source</a><a href="#impl-Readable-for-T0_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::ficr::temp::t0::<a class="struct" href="../ficr/temp/t0/struct.T0_SPEC.html" title="struct nrf52840_pac::ficr::temp::t0::T0_SPEC">T0_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ficr/temp/t0/struct.R.html" title="struct nrf52840_pac::ficr::temp::t0::R">t0::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-109" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/temp/t0.rs.html#32">source</a><a href="#associatedtype.Reader-109" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ficr/temp/t0/struct.R.html" title="struct nrf52840_pac::ficr::temp::t0::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-T1_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/temp/t1.rs.html#31-33">source</a><a href="#impl-Readable-for-T1_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::ficr::temp::t1::<a class="struct" href="../ficr/temp/t1/struct.T1_SPEC.html" title="struct nrf52840_pac::ficr::temp::t1::T1_SPEC">T1_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ficr/temp/t1/struct.R.html" title="struct nrf52840_pac::ficr::temp::t1::R">t1::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-110" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/temp/t1.rs.html#32">source</a><a href="#associatedtype.Reader-110" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ficr/temp/t1/struct.R.html" title="struct nrf52840_pac::ficr::temp::t1::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-T2_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/temp/t2.rs.html#31-33">source</a><a href="#impl-Readable-for-T2_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::ficr::temp::t2::<a class="struct" href="../ficr/temp/t2/struct.T2_SPEC.html" title="struct nrf52840_pac::ficr::temp::t2::T2_SPEC">T2_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ficr/temp/t2/struct.R.html" title="struct nrf52840_pac::ficr::temp::t2::R">t2::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-111" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/temp/t2.rs.html#32">source</a><a href="#associatedtype.Reader-111" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ficr/temp/t2/struct.R.html" title="struct nrf52840_pac::ficr::temp::t2::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-T3_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/temp/t3.rs.html#31-33">source</a><a href="#impl-Readable-for-T3_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::ficr::temp::t3::<a class="struct" href="../ficr/temp/t3/struct.T3_SPEC.html" title="struct nrf52840_pac::ficr::temp::t3::T3_SPEC">T3_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ficr/temp/t3/struct.R.html" title="struct nrf52840_pac::ficr::temp::t3::R">t3::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-112" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/temp/t3.rs.html#32">source</a><a href="#associatedtype.Reader-112" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ficr/temp/t3/struct.R.html" title="struct nrf52840_pac::ficr::temp::t3::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-T4_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/temp/t4.rs.html#31-33">source</a><a href="#impl-Readable-for-T4_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::ficr::temp::t4::<a class="struct" href="../ficr/temp/t4/struct.T4_SPEC.html" title="struct nrf52840_pac::ficr::temp::t4::T4_SPEC">T4_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ficr/temp/t4/struct.R.html" title="struct nrf52840_pac::ficr::temp::t4::R">t4::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-113" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/temp/t4.rs.html#32">source</a><a href="#associatedtype.Reader-113" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ficr/temp/t4/struct.R.html" title="struct nrf52840_pac::ficr::temp::t4::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-APCUTOFF_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/trng90b/apcutoff.rs.html#31-33">source</a><a href="#impl-Readable-for-APCUTOFF_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../ficr/trng90b/apcutoff/struct.APCUTOFF_SPEC.html" title="struct nrf52840_pac::ficr::trng90b::apcutoff::APCUTOFF_SPEC">APCUTOFF_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ficr/trng90b/apcutoff/struct.R.html" title="struct nrf52840_pac::ficr::trng90b::apcutoff::R">apcutoff::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-114" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/trng90b/apcutoff.rs.html#32">source</a><a href="#associatedtype.Reader-114" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ficr/trng90b/apcutoff/struct.R.html" title="struct nrf52840_pac::ficr::trng90b::apcutoff::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-BYTES_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/trng90b/bytes.rs.html#31-33">source</a><a href="#impl-Readable-for-BYTES_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../ficr/trng90b/bytes/struct.BYTES_SPEC.html" title="struct nrf52840_pac::ficr::trng90b::bytes::BYTES_SPEC">BYTES_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ficr/trng90b/bytes/struct.R.html" title="struct nrf52840_pac::ficr::trng90b::bytes::R">bytes::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-115" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/trng90b/bytes.rs.html#32">source</a><a href="#associatedtype.Reader-115" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ficr/trng90b/bytes/struct.R.html" title="struct nrf52840_pac::ficr::trng90b::bytes::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-RCCUTOFF_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/trng90b/rccutoff.rs.html#31-33">source</a><a href="#impl-Readable-for-RCCUTOFF_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../ficr/trng90b/rccutoff/struct.RCCUTOFF_SPEC.html" title="struct nrf52840_pac::ficr::trng90b::rccutoff::RCCUTOFF_SPEC">RCCUTOFF_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ficr/trng90b/rccutoff/struct.R.html" title="struct nrf52840_pac::ficr::trng90b::rccutoff::R">rccutoff::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-116" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/trng90b/rccutoff.rs.html#32">source</a><a href="#associatedtype.Reader-116" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ficr/trng90b/rccutoff/struct.R.html" title="struct nrf52840_pac::ficr::trng90b::rccutoff::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ROSC1_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/trng90b/rosc1.rs.html#31-33">source</a><a href="#impl-Readable-for-ROSC1_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../ficr/trng90b/rosc1/struct.ROSC1_SPEC.html" title="struct nrf52840_pac::ficr::trng90b::rosc1::ROSC1_SPEC">ROSC1_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ficr/trng90b/rosc1/struct.R.html" title="struct nrf52840_pac::ficr::trng90b::rosc1::R">rosc1::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-117" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/trng90b/rosc1.rs.html#32">source</a><a href="#associatedtype.Reader-117" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ficr/trng90b/rosc1/struct.R.html" title="struct nrf52840_pac::ficr::trng90b::rosc1::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ROSC2_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/trng90b/rosc2.rs.html#31-33">source</a><a href="#impl-Readable-for-ROSC2_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../ficr/trng90b/rosc2/struct.ROSC2_SPEC.html" title="struct nrf52840_pac::ficr::trng90b::rosc2::ROSC2_SPEC">ROSC2_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ficr/trng90b/rosc2/struct.R.html" title="struct nrf52840_pac::ficr::trng90b::rosc2::R">rosc2::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-118" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/trng90b/rosc2.rs.html#32">source</a><a href="#associatedtype.Reader-118" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ficr/trng90b/rosc2/struct.R.html" title="struct nrf52840_pac::ficr::trng90b::rosc2::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ROSC3_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/trng90b/rosc3.rs.html#31-33">source</a><a href="#impl-Readable-for-ROSC3_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../ficr/trng90b/rosc3/struct.ROSC3_SPEC.html" title="struct nrf52840_pac::ficr::trng90b::rosc3::ROSC3_SPEC">ROSC3_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ficr/trng90b/rosc3/struct.R.html" title="struct nrf52840_pac::ficr::trng90b::rosc3::R">rosc3::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-119" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/trng90b/rosc3.rs.html#32">source</a><a href="#associatedtype.Reader-119" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ficr/trng90b/rosc3/struct.R.html" title="struct nrf52840_pac::ficr::trng90b::rosc3::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ROSC4_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/trng90b/rosc4.rs.html#31-33">source</a><a href="#impl-Readable-for-ROSC4_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../ficr/trng90b/rosc4/struct.ROSC4_SPEC.html" title="struct nrf52840_pac::ficr::trng90b::rosc4::ROSC4_SPEC">ROSC4_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ficr/trng90b/rosc4/struct.R.html" title="struct nrf52840_pac::ficr::trng90b::rosc4::R">rosc4::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-120" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/trng90b/rosc4.rs.html#32">source</a><a href="#associatedtype.Reader-120" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ficr/trng90b/rosc4/struct.R.html" title="struct nrf52840_pac::ficr::trng90b::rosc4::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-STARTUP_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/trng90b/startup.rs.html#31-33">source</a><a href="#impl-Readable-for-STARTUP_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../ficr/trng90b/startup/struct.STARTUP_SPEC.html" title="struct nrf52840_pac::ficr::trng90b::startup::STARTUP_SPEC">STARTUP_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ficr/trng90b/startup/struct.R.html" title="struct nrf52840_pac::ficr::trng90b::startup::R">startup::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-121" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ficr/trng90b/startup.rs.html#32">source</a><a href="#associatedtype.Reader-121" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ficr/trng90b/startup/struct.R.html" title="struct nrf52840_pac::ficr::trng90b::startup::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-CONFIG_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/gpiote/config.rs.html#344-346">source</a><a href="#impl-Readable-for-CONFIG_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::gpiote::config::<a class="struct" href="../gpiote/config/struct.CONFIG_SPEC.html" title="struct nrf52840_pac::gpiote::config::CONFIG_SPEC">CONFIG_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../gpiote/config/struct.R.html" title="struct nrf52840_pac::gpiote::config::R">config::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-122" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/gpiote/config.rs.html#345">source</a><a href="#associatedtype.Reader-122" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../gpiote/config/struct.R.html" title="struct nrf52840_pac::gpiote::config::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_IN_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/gpiote/events_in.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_IN_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../gpiote/events_in/struct.EVENTS_IN_SPEC.html" title="struct nrf52840_pac::gpiote::events_in::EVENTS_IN_SPEC">EVENTS_IN_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../gpiote/events_in/struct.R.html" title="struct nrf52840_pac::gpiote::events_in::R">events_in::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-123" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/gpiote/events_in.rs.html#68">source</a><a href="#associatedtype.Reader-123" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../gpiote/events_in/struct.R.html" title="struct nrf52840_pac::gpiote::events_in::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_PORT_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/gpiote/events_port.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_PORT_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../gpiote/events_port/struct.EVENTS_PORT_SPEC.html" title="struct nrf52840_pac::gpiote::events_port::EVENTS_PORT_SPEC">EVENTS_PORT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../gpiote/events_port/struct.R.html" title="struct nrf52840_pac::gpiote::events_port::R">events_port::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-124" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/gpiote/events_port.rs.html#68">source</a><a href="#associatedtype.Reader-124" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../gpiote/events_port/struct.R.html" title="struct nrf52840_pac::gpiote::events_port::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENCLR_SPEC-6" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/gpiote/intenclr.rs.html#704-706">source</a><a href="#impl-Readable-for-INTENCLR_SPEC-6" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::gpiote::intenclr::<a class="struct" href="../gpiote/intenclr/struct.INTENCLR_SPEC.html" title="struct nrf52840_pac::gpiote::intenclr::INTENCLR_SPEC">INTENCLR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../gpiote/intenclr/struct.R.html" title="struct nrf52840_pac::gpiote::intenclr::R">intenclr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-125" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/gpiote/intenclr.rs.html#705">source</a><a href="#associatedtype.Reader-125" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../gpiote/intenclr/struct.R.html" title="struct nrf52840_pac::gpiote::intenclr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENSET_SPEC-6" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/gpiote/intenset.rs.html#704-706">source</a><a href="#impl-Readable-for-INTENSET_SPEC-6" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::gpiote::intenset::<a class="struct" href="../gpiote/intenset/struct.INTENSET_SPEC.html" title="struct nrf52840_pac::gpiote::intenset::INTENSET_SPEC">INTENSET_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../gpiote/intenset/struct.R.html" title="struct nrf52840_pac::gpiote::intenset::R">intenset::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-126" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/gpiote/intenset.rs.html#705">source</a><a href="#associatedtype.Reader-126" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../gpiote/intenset/struct.R.html" title="struct nrf52840_pac::gpiote::intenset::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ALIGN_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/i2s/config/align.rs.html#113-115">source</a><a href="#impl-Readable-for-ALIGN_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../i2s/config/align/struct.ALIGN_SPEC.html" title="struct nrf52840_pac::i2s::config::align::ALIGN_SPEC">ALIGN_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../i2s/config/align/struct.R.html" title="struct nrf52840_pac::i2s::config::align::R">align::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-127" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/i2s/config/align.rs.html#114">source</a><a href="#associatedtype.Reader-127" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../i2s/config/align/struct.R.html" title="struct nrf52840_pac::i2s::config::align::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-CHANNELS_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/i2s/config/channels.rs.html#129-131">source</a><a href="#impl-Readable-for-CHANNELS_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../i2s/config/channels/struct.CHANNELS_SPEC.html" title="struct nrf52840_pac::i2s::config::channels::CHANNELS_SPEC">CHANNELS_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../i2s/config/channels/struct.R.html" title="struct nrf52840_pac::i2s::config::channels::R">channels::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-128" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/i2s/config/channels.rs.html#130">source</a><a href="#associatedtype.Reader-128" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../i2s/config/channels/struct.R.html" title="struct nrf52840_pac::i2s::config::channels::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-FORMAT_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/i2s/config/format.rs.html#113-115">source</a><a href="#impl-Readable-for-FORMAT_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../i2s/config/format/struct.FORMAT_SPEC.html" title="struct nrf52840_pac::i2s::config::format::FORMAT_SPEC">FORMAT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../i2s/config/format/struct.R.html" title="struct nrf52840_pac::i2s::config::format::R">format::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-129" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/i2s/config/format.rs.html#114">source</a><a href="#associatedtype.Reader-129" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../i2s/config/format/struct.R.html" title="struct nrf52840_pac::i2s::config::format::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-MCKEN_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/i2s/config/mcken.rs.html#113-115">source</a><a href="#impl-Readable-for-MCKEN_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../i2s/config/mcken/struct.MCKEN_SPEC.html" title="struct nrf52840_pac::i2s::config::mcken::MCKEN_SPEC">MCKEN_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../i2s/config/mcken/struct.R.html" title="struct nrf52840_pac::i2s::config::mcken::R">mcken::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-130" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/i2s/config/mcken.rs.html#114">source</a><a href="#associatedtype.Reader-130" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../i2s/config/mcken/struct.R.html" title="struct nrf52840_pac::i2s::config::mcken::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-MCKFREQ_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/i2s/config/mckfreq.rs.html#324-326">source</a><a href="#impl-Readable-for-MCKFREQ_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../i2s/config/mckfreq/struct.MCKFREQ_SPEC.html" title="struct nrf52840_pac::i2s::config::mckfreq::MCKFREQ_SPEC">MCKFREQ_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../i2s/config/mckfreq/struct.R.html" title="struct nrf52840_pac::i2s::config::mckfreq::R">mckfreq::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-131" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/i2s/config/mckfreq.rs.html#325">source</a><a href="#associatedtype.Reader-131" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../i2s/config/mckfreq/struct.R.html" title="struct nrf52840_pac::i2s::config::mckfreq::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-MODE_SPEC-2" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/i2s/config/mode.rs.html#113-115">source</a><a href="#impl-Readable-for-MODE_SPEC-2" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::i2s::config::mode::<a class="struct" href="../i2s/config/mode/struct.MODE_SPEC.html" title="struct nrf52840_pac::i2s::config::mode::MODE_SPEC">MODE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../i2s/config/mode/struct.R.html" title="struct nrf52840_pac::i2s::config::mode::R">mode::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-132" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/i2s/config/mode.rs.html#114">source</a><a href="#associatedtype.Reader-132" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../i2s/config/mode/struct.R.html" title="struct nrf52840_pac::i2s::config::mode::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-RATIO_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/i2s/config/ratio.rs.html#206-208">source</a><a href="#impl-Readable-for-RATIO_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::i2s::config::ratio::<a class="struct" href="../i2s/config/ratio/struct.RATIO_SPEC.html" title="struct nrf52840_pac::i2s::config::ratio::RATIO_SPEC">RATIO_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../i2s/config/ratio/struct.R.html" title="struct nrf52840_pac::i2s::config::ratio::R">ratio::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-133" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/i2s/config/ratio.rs.html#207">source</a><a href="#associatedtype.Reader-133" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../i2s/config/ratio/struct.R.html" title="struct nrf52840_pac::i2s::config::ratio::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-RXEN_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/i2s/config/rxen.rs.html#113-115">source</a><a href="#impl-Readable-for-RXEN_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../i2s/config/rxen/struct.RXEN_SPEC.html" title="struct nrf52840_pac::i2s::config::rxen::RXEN_SPEC">RXEN_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../i2s/config/rxen/struct.R.html" title="struct nrf52840_pac::i2s::config::rxen::R">rxen::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-134" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/i2s/config/rxen.rs.html#114">source</a><a href="#associatedtype.Reader-134" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../i2s/config/rxen/struct.R.html" title="struct nrf52840_pac::i2s::config::rxen::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-SWIDTH_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/i2s/config/swidth.rs.html#128-130">source</a><a href="#impl-Readable-for-SWIDTH_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../i2s/config/swidth/struct.SWIDTH_SPEC.html" title="struct nrf52840_pac::i2s::config::swidth::SWIDTH_SPEC">SWIDTH_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../i2s/config/swidth/struct.R.html" title="struct nrf52840_pac::i2s::config::swidth::R">swidth::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-135" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/i2s/config/swidth.rs.html#129">source</a><a href="#associatedtype.Reader-135" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../i2s/config/swidth/struct.R.html" title="struct nrf52840_pac::i2s::config::swidth::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-TXEN_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/i2s/config/txen.rs.html#113-115">source</a><a href="#impl-Readable-for-TXEN_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../i2s/config/txen/struct.TXEN_SPEC.html" title="struct nrf52840_pac::i2s::config::txen::TXEN_SPEC">TXEN_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../i2s/config/txen/struct.R.html" title="struct nrf52840_pac::i2s::config::txen::R">txen::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-136" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/i2s/config/txen.rs.html#114">source</a><a href="#associatedtype.Reader-136" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../i2s/config/txen/struct.R.html" title="struct nrf52840_pac::i2s::config::txen::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ENABLE_SPEC-4" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/i2s/enable.rs.html#113-115">source</a><a href="#impl-Readable-for-ENABLE_SPEC-4" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::i2s::enable::<a class="struct" href="../i2s/enable/struct.ENABLE_SPEC.html" title="struct nrf52840_pac::i2s::enable::ENABLE_SPEC">ENABLE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../i2s/enable/struct.R.html" title="struct nrf52840_pac::i2s::enable::R">enable::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-137" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/i2s/enable.rs.html#114">source</a><a href="#associatedtype.Reader-137" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../i2s/enable/struct.R.html" title="struct nrf52840_pac::i2s::enable::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_RXPTRUPD_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/i2s/events_rxptrupd.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_RXPTRUPD_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../i2s/events_rxptrupd/struct.EVENTS_RXPTRUPD_SPEC.html" title="struct nrf52840_pac::i2s::events_rxptrupd::EVENTS_RXPTRUPD_SPEC">EVENTS_RXPTRUPD_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../i2s/events_rxptrupd/struct.R.html" title="struct nrf52840_pac::i2s::events_rxptrupd::R">events_rxptrupd::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-138" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/i2s/events_rxptrupd.rs.html#69">source</a><a href="#associatedtype.Reader-138" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../i2s/events_rxptrupd/struct.R.html" title="struct nrf52840_pac::i2s::events_rxptrupd::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_STOPPED_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/i2s/events_stopped.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_STOPPED_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::i2s::events_stopped::<a class="struct" href="../i2s/events_stopped/struct.EVENTS_STOPPED_SPEC.html" title="struct nrf52840_pac::i2s::events_stopped::EVENTS_STOPPED_SPEC">EVENTS_STOPPED_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../i2s/events_stopped/struct.R.html" title="struct nrf52840_pac::i2s::events_stopped::R">events_stopped::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-139" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/i2s/events_stopped.rs.html#69">source</a><a href="#associatedtype.Reader-139" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../i2s/events_stopped/struct.R.html" title="struct nrf52840_pac::i2s::events_stopped::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_TXPTRUPD_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/i2s/events_txptrupd.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_TXPTRUPD_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../i2s/events_txptrupd/struct.EVENTS_TXPTRUPD_SPEC.html" title="struct nrf52840_pac::i2s::events_txptrupd::EVENTS_TXPTRUPD_SPEC">EVENTS_TXPTRUPD_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../i2s/events_txptrupd/struct.R.html" title="struct nrf52840_pac::i2s::events_txptrupd::R">events_txptrupd::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-140" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/i2s/events_txptrupd.rs.html#69">source</a><a href="#associatedtype.Reader-140" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../i2s/events_txptrupd/struct.R.html" title="struct nrf52840_pac::i2s::events_txptrupd::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTEN_SPEC-2" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/i2s/inten.rs.html#233-235">source</a><a href="#impl-Readable-for-INTEN_SPEC-2" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::i2s::inten::<a class="struct" href="../i2s/inten/struct.INTEN_SPEC.html" title="struct nrf52840_pac::i2s::inten::INTEN_SPEC">INTEN_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../i2s/inten/struct.R.html" title="struct nrf52840_pac::i2s::inten::R">inten::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-141" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/i2s/inten.rs.html#234">source</a><a href="#associatedtype.Reader-141" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../i2s/inten/struct.R.html" title="struct nrf52840_pac::i2s::inten::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENCLR_SPEC-7" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/i2s/intenclr.rs.html#254-256">source</a><a href="#impl-Readable-for-INTENCLR_SPEC-7" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::i2s::intenclr::<a class="struct" href="../i2s/intenclr/struct.INTENCLR_SPEC.html" title="struct nrf52840_pac::i2s::intenclr::INTENCLR_SPEC">INTENCLR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../i2s/intenclr/struct.R.html" title="struct nrf52840_pac::i2s::intenclr::R">intenclr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-142" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/i2s/intenclr.rs.html#255">source</a><a href="#associatedtype.Reader-142" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../i2s/intenclr/struct.R.html" title="struct nrf52840_pac::i2s::intenclr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENSET_SPEC-7" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/i2s/intenset.rs.html#254-256">source</a><a href="#impl-Readable-for-INTENSET_SPEC-7" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::i2s::intenset::<a class="struct" href="../i2s/intenset/struct.INTENSET_SPEC.html" title="struct nrf52840_pac::i2s::intenset::INTENSET_SPEC">INTENSET_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../i2s/intenset/struct.R.html" title="struct nrf52840_pac::i2s::intenset::R">intenset::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-143" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/i2s/intenset.rs.html#255">source</a><a href="#associatedtype.Reader-143" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../i2s/intenset/struct.R.html" title="struct nrf52840_pac::i2s::intenset::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-LRCK_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/i2s/psel/lrck.rs.html#141-143">source</a><a href="#impl-Readable-for-LRCK_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../i2s/psel/lrck/struct.LRCK_SPEC.html" title="struct nrf52840_pac::i2s::psel::lrck::LRCK_SPEC">LRCK_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../i2s/psel/lrck/struct.R.html" title="struct nrf52840_pac::i2s::psel::lrck::R">lrck::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-144" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/i2s/psel/lrck.rs.html#142">source</a><a href="#associatedtype.Reader-144" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../i2s/psel/lrck/struct.R.html" title="struct nrf52840_pac::i2s::psel::lrck::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-MCK_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/i2s/psel/mck.rs.html#141-143">source</a><a href="#impl-Readable-for-MCK_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../i2s/psel/mck/struct.MCK_SPEC.html" title="struct nrf52840_pac::i2s::psel::mck::MCK_SPEC">MCK_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../i2s/psel/mck/struct.R.html" title="struct nrf52840_pac::i2s::psel::mck::R">mck::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-145" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/i2s/psel/mck.rs.html#142">source</a><a href="#associatedtype.Reader-145" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../i2s/psel/mck/struct.R.html" title="struct nrf52840_pac::i2s::psel::mck::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-SCK_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/i2s/psel/sck.rs.html#141-143">source</a><a href="#impl-Readable-for-SCK_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::i2s::psel::sck::<a class="struct" href="../i2s/psel/sck/struct.SCK_SPEC.html" title="struct nrf52840_pac::i2s::psel::sck::SCK_SPEC">SCK_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../i2s/psel/sck/struct.R.html" title="struct nrf52840_pac::i2s::psel::sck::R">sck::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-146" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/i2s/psel/sck.rs.html#142">source</a><a href="#associatedtype.Reader-146" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../i2s/psel/sck/struct.R.html" title="struct nrf52840_pac::i2s::psel::sck::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-SDIN_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/i2s/psel/sdin.rs.html#141-143">source</a><a href="#impl-Readable-for-SDIN_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../i2s/psel/sdin/struct.SDIN_SPEC.html" title="struct nrf52840_pac::i2s::psel::sdin::SDIN_SPEC">SDIN_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../i2s/psel/sdin/struct.R.html" title="struct nrf52840_pac::i2s::psel::sdin::R">sdin::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-147" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/i2s/psel/sdin.rs.html#142">source</a><a href="#associatedtype.Reader-147" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../i2s/psel/sdin/struct.R.html" title="struct nrf52840_pac::i2s::psel::sdin::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-SDOUT_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/i2s/psel/sdout.rs.html#141-143">source</a><a href="#impl-Readable-for-SDOUT_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../i2s/psel/sdout/struct.SDOUT_SPEC.html" title="struct nrf52840_pac::i2s::psel::sdout::SDOUT_SPEC">SDOUT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../i2s/psel/sdout/struct.R.html" title="struct nrf52840_pac::i2s::psel::sdout::R">sdout::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-148" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/i2s/psel/sdout.rs.html#142">source</a><a href="#associatedtype.Reader-148" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../i2s/psel/sdout/struct.R.html" title="struct nrf52840_pac::i2s::psel::sdout::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-PTR_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/i2s/rxd/ptr.rs.html#67-69">source</a><a href="#impl-Readable-for-PTR_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::i2s::rxd::ptr::<a class="struct" href="../i2s/rxd/ptr/struct.PTR_SPEC.html" title="struct nrf52840_pac::i2s::rxd::ptr::PTR_SPEC">PTR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../i2s/rxd/ptr/struct.R.html" title="struct nrf52840_pac::i2s::rxd::ptr::R">ptr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-149" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/i2s/rxd/ptr.rs.html#68">source</a><a href="#associatedtype.Reader-149" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../i2s/rxd/ptr/struct.R.html" title="struct nrf52840_pac::i2s::rxd::ptr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-MAXCNT_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/i2s/rxtxd/maxcnt.rs.html#67-69">source</a><a href="#impl-Readable-for-MAXCNT_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::i2s::rxtxd::maxcnt::<a class="struct" href="../i2s/rxtxd/maxcnt/struct.MAXCNT_SPEC.html" title="struct nrf52840_pac::i2s::rxtxd::maxcnt::MAXCNT_SPEC">MAXCNT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../i2s/rxtxd/maxcnt/struct.R.html" title="struct nrf52840_pac::i2s::rxtxd::maxcnt::R">maxcnt::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-150" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/i2s/rxtxd/maxcnt.rs.html#68">source</a><a href="#associatedtype.Reader-150" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../i2s/rxtxd/maxcnt/struct.R.html" title="struct nrf52840_pac::i2s::rxtxd::maxcnt::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-PTR_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/i2s/txd/ptr.rs.html#67-69">source</a><a href="#impl-Readable-for-PTR_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::i2s::txd::ptr::<a class="struct" href="../i2s/txd/ptr/struct.PTR_SPEC.html" title="struct nrf52840_pac::i2s::txd::ptr::PTR_SPEC">PTR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../i2s/txd/ptr/struct.R.html" title="struct nrf52840_pac::i2s::txd::ptr::R">ptr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-151" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/i2s/txd/ptr.rs.html#68">source</a><a href="#associatedtype.Reader-151" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../i2s/txd/ptr/struct.R.html" title="struct nrf52840_pac::i2s::txd::ptr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ANADETECT_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/lpcomp/anadetect.rs.html#129-131">source</a><a href="#impl-Readable-for-ANADETECT_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../lpcomp/anadetect/struct.ANADETECT_SPEC.html" title="struct nrf52840_pac::lpcomp::anadetect::ANADETECT_SPEC">ANADETECT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../lpcomp/anadetect/struct.R.html" title="struct nrf52840_pac::lpcomp::anadetect::R">anadetect::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-152" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/lpcomp/anadetect.rs.html#130">source</a><a href="#associatedtype.Reader-152" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../lpcomp/anadetect/struct.R.html" title="struct nrf52840_pac::lpcomp::anadetect::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ENABLE_SPEC-5" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/lpcomp/enable.rs.html#115-117">source</a><a href="#impl-Readable-for-ENABLE_SPEC-5" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::lpcomp::enable::<a class="struct" href="../lpcomp/enable/struct.ENABLE_SPEC.html" title="struct nrf52840_pac::lpcomp::enable::ENABLE_SPEC">ENABLE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../lpcomp/enable/struct.R.html" title="struct nrf52840_pac::lpcomp::enable::R">enable::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-153" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/lpcomp/enable.rs.html#116">source</a><a href="#associatedtype.Reader-153" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../lpcomp/enable/struct.R.html" title="struct nrf52840_pac::lpcomp::enable::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_CROSS_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/lpcomp/events_cross.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_CROSS_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::lpcomp::events_cross::<a class="struct" href="../lpcomp/events_cross/struct.EVENTS_CROSS_SPEC.html" title="struct nrf52840_pac::lpcomp::events_cross::EVENTS_CROSS_SPEC">EVENTS_CROSS_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../lpcomp/events_cross/struct.R.html" title="struct nrf52840_pac::lpcomp::events_cross::R">events_cross::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-154" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/lpcomp/events_cross.rs.html#68">source</a><a href="#associatedtype.Reader-154" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../lpcomp/events_cross/struct.R.html" title="struct nrf52840_pac::lpcomp::events_cross::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_DOWN_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/lpcomp/events_down.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_DOWN_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::lpcomp::events_down::<a class="struct" href="../lpcomp/events_down/struct.EVENTS_DOWN_SPEC.html" title="struct nrf52840_pac::lpcomp::events_down::EVENTS_DOWN_SPEC">EVENTS_DOWN_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../lpcomp/events_down/struct.R.html" title="struct nrf52840_pac::lpcomp::events_down::R">events_down::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-155" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/lpcomp/events_down.rs.html#68">source</a><a href="#associatedtype.Reader-155" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../lpcomp/events_down/struct.R.html" title="struct nrf52840_pac::lpcomp::events_down::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_READY_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/lpcomp/events_ready.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_READY_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::lpcomp::events_ready::<a class="struct" href="../lpcomp/events_ready/struct.EVENTS_READY_SPEC.html" title="struct nrf52840_pac::lpcomp::events_ready::EVENTS_READY_SPEC">EVENTS_READY_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../lpcomp/events_ready/struct.R.html" title="struct nrf52840_pac::lpcomp::events_ready::R">events_ready::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-156" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/lpcomp/events_ready.rs.html#68">source</a><a href="#associatedtype.Reader-156" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../lpcomp/events_ready/struct.R.html" title="struct nrf52840_pac::lpcomp::events_ready::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_UP_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/lpcomp/events_up.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_UP_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::lpcomp::events_up::<a class="struct" href="../lpcomp/events_up/struct.EVENTS_UP_SPEC.html" title="struct nrf52840_pac::lpcomp::events_up::EVENTS_UP_SPEC">EVENTS_UP_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../lpcomp/events_up/struct.R.html" title="struct nrf52840_pac::lpcomp::events_up::R">events_up::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-157" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/lpcomp/events_up.rs.html#68">source</a><a href="#associatedtype.Reader-157" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../lpcomp/events_up/struct.R.html" title="struct nrf52840_pac::lpcomp::events_up::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EXTREFSEL_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/lpcomp/extrefsel.rs.html#113-115">source</a><a href="#impl-Readable-for-EXTREFSEL_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::lpcomp::extrefsel::<a class="struct" href="../lpcomp/extrefsel/struct.EXTREFSEL_SPEC.html" title="struct nrf52840_pac::lpcomp::extrefsel::EXTREFSEL_SPEC">EXTREFSEL_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../lpcomp/extrefsel/struct.R.html" title="struct nrf52840_pac::lpcomp::extrefsel::R">extrefsel::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-158" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/lpcomp/extrefsel.rs.html#114">source</a><a href="#associatedtype.Reader-158" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../lpcomp/extrefsel/struct.R.html" title="struct nrf52840_pac::lpcomp::extrefsel::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-HYST_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/lpcomp/hyst.rs.html#113-115">source</a><a href="#impl-Readable-for-HYST_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::lpcomp::hyst::<a class="struct" href="../lpcomp/hyst/struct.HYST_SPEC.html" title="struct nrf52840_pac::lpcomp::hyst::HYST_SPEC">HYST_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../lpcomp/hyst/struct.R.html" title="struct nrf52840_pac::lpcomp::hyst::R">hyst::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-159" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/lpcomp/hyst.rs.html#114">source</a><a href="#associatedtype.Reader-159" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../lpcomp/hyst/struct.R.html" title="struct nrf52840_pac::lpcomp::hyst::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENCLR_SPEC-8" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/lpcomp/intenclr.rs.html#321-323">source</a><a href="#impl-Readable-for-INTENCLR_SPEC-8" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::lpcomp::intenclr::<a class="struct" href="../lpcomp/intenclr/struct.INTENCLR_SPEC.html" title="struct nrf52840_pac::lpcomp::intenclr::INTENCLR_SPEC">INTENCLR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../lpcomp/intenclr/struct.R.html" title="struct nrf52840_pac::lpcomp::intenclr::R">intenclr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-160" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/lpcomp/intenclr.rs.html#322">source</a><a href="#associatedtype.Reader-160" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../lpcomp/intenclr/struct.R.html" title="struct nrf52840_pac::lpcomp::intenclr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENSET_SPEC-8" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/lpcomp/intenset.rs.html#321-323">source</a><a href="#impl-Readable-for-INTENSET_SPEC-8" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::lpcomp::intenset::<a class="struct" href="../lpcomp/intenset/struct.INTENSET_SPEC.html" title="struct nrf52840_pac::lpcomp::intenset::INTENSET_SPEC">INTENSET_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../lpcomp/intenset/struct.R.html" title="struct nrf52840_pac::lpcomp::intenset::R">intenset::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-161" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/lpcomp/intenset.rs.html#322">source</a><a href="#associatedtype.Reader-161" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../lpcomp/intenset/struct.R.html" title="struct nrf52840_pac::lpcomp::intenset::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-PSEL_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/lpcomp/psel.rs.html#193-195">source</a><a href="#impl-Readable-for-PSEL_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::lpcomp::psel::<a class="struct" href="../lpcomp/psel/struct.PSEL_SPEC.html" title="struct nrf52840_pac::lpcomp::psel::PSEL_SPEC">PSEL_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../lpcomp/psel/struct.R.html" title="struct nrf52840_pac::lpcomp::psel::R">psel::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-162" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/lpcomp/psel.rs.html#194">source</a><a href="#associatedtype.Reader-162" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../lpcomp/psel/struct.R.html" title="struct nrf52840_pac::lpcomp::psel::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-REFSEL_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/lpcomp/refsel.rs.html#298-300">source</a><a href="#impl-Readable-for-REFSEL_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::lpcomp::refsel::<a class="struct" href="../lpcomp/refsel/struct.REFSEL_SPEC.html" title="struct nrf52840_pac::lpcomp::refsel::REFSEL_SPEC">REFSEL_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../lpcomp/refsel/struct.R.html" title="struct nrf52840_pac::lpcomp::refsel::R">refsel::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-163" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/lpcomp/refsel.rs.html#299">source</a><a href="#associatedtype.Reader-163" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../lpcomp/refsel/struct.R.html" title="struct nrf52840_pac::lpcomp::refsel::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-RESULT_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/lpcomp/result.rs.html#65-67">source</a><a href="#impl-Readable-for-RESULT_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::lpcomp::result::<a class="struct" href="../lpcomp/result/struct.RESULT_SPEC.html" title="struct nrf52840_pac::lpcomp::result::RESULT_SPEC">RESULT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../lpcomp/result/struct.R.html" title="struct nrf52840_pac::lpcomp::result::R">result::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-164" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/lpcomp/result.rs.html#66">source</a><a href="#associatedtype.Reader-164" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../lpcomp/result/struct.R.html" title="struct nrf52840_pac::lpcomp::result::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-SHORTS_SPEC-2" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/lpcomp/shorts.rs.html#354-356">source</a><a href="#impl-Readable-for-SHORTS_SPEC-2" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::lpcomp::shorts::<a class="struct" href="../lpcomp/shorts/struct.SHORTS_SPEC.html" title="struct nrf52840_pac::lpcomp::shorts::SHORTS_SPEC">SHORTS_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../lpcomp/shorts/struct.R.html" title="struct nrf52840_pac::lpcomp::shorts::R">shorts::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-165" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/lpcomp/shorts.rs.html#355">source</a><a href="#associatedtype.Reader-165" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../lpcomp/shorts/struct.R.html" title="struct nrf52840_pac::lpcomp::shorts::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-RA_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/mwu/events_pregion/ra.rs.html#67-69">source</a><a href="#impl-Readable-for-RA_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::mwu::events_pregion::ra::<a class="struct" href="../mwu/events_pregion/ra/struct.RA_SPEC.html" title="struct nrf52840_pac::mwu::events_pregion::ra::RA_SPEC">RA_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../mwu/events_pregion/ra/struct.R.html" title="struct nrf52840_pac::mwu::events_pregion::ra::R">ra::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-166" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/mwu/events_pregion/ra.rs.html#68">source</a><a href="#associatedtype.Reader-166" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../mwu/events_pregion/ra/struct.R.html" title="struct nrf52840_pac::mwu::events_pregion::ra::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-WA_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/mwu/events_pregion/wa.rs.html#67-69">source</a><a href="#impl-Readable-for-WA_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::mwu::events_pregion::wa::<a class="struct" href="../mwu/events_pregion/wa/struct.WA_SPEC.html" title="struct nrf52840_pac::mwu::events_pregion::wa::WA_SPEC">WA_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../mwu/events_pregion/wa/struct.R.html" title="struct nrf52840_pac::mwu::events_pregion::wa::R">wa::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-167" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/mwu/events_pregion/wa.rs.html#68">source</a><a href="#associatedtype.Reader-167" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../mwu/events_pregion/wa/struct.R.html" title="struct nrf52840_pac::mwu::events_pregion::wa::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-RA_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/mwu/events_region/ra.rs.html#67-69">source</a><a href="#impl-Readable-for-RA_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::mwu::events_region::ra::<a class="struct" href="../mwu/events_region/ra/struct.RA_SPEC.html" title="struct nrf52840_pac::mwu::events_region::ra::RA_SPEC">RA_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../mwu/events_region/ra/struct.R.html" title="struct nrf52840_pac::mwu::events_region::ra::R">ra::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-168" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/mwu/events_region/ra.rs.html#68">source</a><a href="#associatedtype.Reader-168" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../mwu/events_region/ra/struct.R.html" title="struct nrf52840_pac::mwu::events_region::ra::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-WA_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/mwu/events_region/wa.rs.html#67-69">source</a><a href="#impl-Readable-for-WA_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::mwu::events_region::wa::<a class="struct" href="../mwu/events_region/wa/struct.WA_SPEC.html" title="struct nrf52840_pac::mwu::events_region::wa::WA_SPEC">WA_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../mwu/events_region/wa/struct.R.html" title="struct nrf52840_pac::mwu::events_region::wa::R">wa::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-169" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/mwu/events_region/wa.rs.html#68">source</a><a href="#associatedtype.Reader-169" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../mwu/events_region/wa/struct.R.html" title="struct nrf52840_pac::mwu::events_region::wa::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTEN_SPEC-3" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/mwu/inten.rs.html#773-775">source</a><a href="#impl-Readable-for-INTEN_SPEC-3" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::mwu::inten::<a class="struct" href="../mwu/inten/struct.INTEN_SPEC.html" title="struct nrf52840_pac::mwu::inten::INTEN_SPEC">INTEN_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../mwu/inten/struct.R.html" title="struct nrf52840_pac::mwu::inten::R">inten::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-170" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/mwu/inten.rs.html#774">source</a><a href="#associatedtype.Reader-170" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../mwu/inten/struct.R.html" title="struct nrf52840_pac::mwu::inten::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENCLR_SPEC-9" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/mwu/intenclr.rs.html#857-859">source</a><a href="#impl-Readable-for-INTENCLR_SPEC-9" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::mwu::intenclr::<a class="struct" href="../mwu/intenclr/struct.INTENCLR_SPEC.html" title="struct nrf52840_pac::mwu::intenclr::INTENCLR_SPEC">INTENCLR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../mwu/intenclr/struct.R.html" title="struct nrf52840_pac::mwu::intenclr::R">intenclr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-171" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/mwu/intenclr.rs.html#858">source</a><a href="#associatedtype.Reader-171" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../mwu/intenclr/struct.R.html" title="struct nrf52840_pac::mwu::intenclr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENSET_SPEC-9" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/mwu/intenset.rs.html#857-859">source</a><a href="#impl-Readable-for-INTENSET_SPEC-9" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::mwu::intenset::<a class="struct" href="../mwu/intenset/struct.INTENSET_SPEC.html" title="struct nrf52840_pac::mwu::intenset::INTENSET_SPEC">INTENSET_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../mwu/intenset/struct.R.html" title="struct nrf52840_pac::mwu::intenset::R">intenset::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-172" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/mwu/intenset.rs.html#858">source</a><a href="#associatedtype.Reader-172" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../mwu/intenset/struct.R.html" title="struct nrf52840_pac::mwu::intenset::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-NMIEN_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/mwu/nmien.rs.html#773-775">source</a><a href="#impl-Readable-for-NMIEN_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../mwu/nmien/struct.NMIEN_SPEC.html" title="struct nrf52840_pac::mwu::nmien::NMIEN_SPEC">NMIEN_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../mwu/nmien/struct.R.html" title="struct nrf52840_pac::mwu::nmien::R">nmien::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-173" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/mwu/nmien.rs.html#774">source</a><a href="#associatedtype.Reader-173" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../mwu/nmien/struct.R.html" title="struct nrf52840_pac::mwu::nmien::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-NMIENCLR_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/mwu/nmienclr.rs.html#857-859">source</a><a href="#impl-Readable-for-NMIENCLR_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../mwu/nmienclr/struct.NMIENCLR_SPEC.html" title="struct nrf52840_pac::mwu::nmienclr::NMIENCLR_SPEC">NMIENCLR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../mwu/nmienclr/struct.R.html" title="struct nrf52840_pac::mwu::nmienclr::R">nmienclr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-174" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/mwu/nmienclr.rs.html#858">source</a><a href="#associatedtype.Reader-174" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../mwu/nmienclr/struct.R.html" title="struct nrf52840_pac::mwu::nmienclr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-NMIENSET_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/mwu/nmienset.rs.html#857-859">source</a><a href="#impl-Readable-for-NMIENSET_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../mwu/nmienset/struct.NMIENSET_SPEC.html" title="struct nrf52840_pac::mwu::nmienset::NMIENSET_SPEC">NMIENSET_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../mwu/nmienset/struct.R.html" title="struct nrf52840_pac::mwu::nmienset::R">nmienset::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-175" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/mwu/nmienset.rs.html#858">source</a><a href="#associatedtype.Reader-175" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../mwu/nmienset/struct.R.html" title="struct nrf52840_pac::mwu::nmienset::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-SUBSTATRA_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/mwu/perregion/substatra.rs.html#1973-1975">source</a><a href="#impl-Readable-for-SUBSTATRA_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../mwu/perregion/substatra/struct.SUBSTATRA_SPEC.html" title="struct nrf52840_pac::mwu::perregion::substatra::SUBSTATRA_SPEC">SUBSTATRA_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../mwu/perregion/substatra/struct.R.html" title="struct nrf52840_pac::mwu::perregion::substatra::R">substatra::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-176" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/mwu/perregion/substatra.rs.html#1974">source</a><a href="#associatedtype.Reader-176" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../mwu/perregion/substatra/struct.R.html" title="struct nrf52840_pac::mwu::perregion::substatra::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-SUBSTATWA_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/mwu/perregion/substatwa.rs.html#1973-1975">source</a><a href="#impl-Readable-for-SUBSTATWA_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../mwu/perregion/substatwa/struct.SUBSTATWA_SPEC.html" title="struct nrf52840_pac::mwu::perregion::substatwa::SUBSTATWA_SPEC">SUBSTATWA_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../mwu/perregion/substatwa/struct.R.html" title="struct nrf52840_pac::mwu::perregion::substatwa::R">substatwa::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-177" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/mwu/perregion/substatwa.rs.html#1974">source</a><a href="#associatedtype.Reader-177" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../mwu/perregion/substatwa/struct.R.html" title="struct nrf52840_pac::mwu::perregion::substatwa::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-END_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/mwu/pregion/end.rs.html#31-33">source</a><a href="#impl-Readable-for-END_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::mwu::pregion::end::<a class="struct" href="../mwu/pregion/end/struct.END_SPEC.html" title="struct nrf52840_pac::mwu::pregion::end::END_SPEC">END_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../mwu/pregion/end/struct.R.html" title="struct nrf52840_pac::mwu::pregion::end::R">end::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-178" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/mwu/pregion/end.rs.html#32">source</a><a href="#associatedtype.Reader-178" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../mwu/pregion/end/struct.R.html" title="struct nrf52840_pac::mwu::pregion::end::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-START_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/mwu/pregion/start.rs.html#31-33">source</a><a href="#impl-Readable-for-START_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::mwu::pregion::start::<a class="struct" href="../mwu/pregion/start/struct.START_SPEC.html" title="struct nrf52840_pac::mwu::pregion::start::START_SPEC">START_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../mwu/pregion/start/struct.R.html" title="struct nrf52840_pac::mwu::pregion::start::R">start::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-179" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/mwu/pregion/start.rs.html#32">source</a><a href="#associatedtype.Reader-179" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../mwu/pregion/start/struct.R.html" title="struct nrf52840_pac::mwu::pregion::start::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-SUBS_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/mwu/pregion/subs.rs.html#1973-1975">source</a><a href="#impl-Readable-for-SUBS_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../mwu/pregion/subs/struct.SUBS_SPEC.html" title="struct nrf52840_pac::mwu::pregion::subs::SUBS_SPEC">SUBS_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../mwu/pregion/subs/struct.R.html" title="struct nrf52840_pac::mwu::pregion::subs::R">subs::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-180" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/mwu/pregion/subs.rs.html#1974">source</a><a href="#associatedtype.Reader-180" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../mwu/pregion/subs/struct.R.html" title="struct nrf52840_pac::mwu::pregion::subs::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-END_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/mwu/region/end.rs.html#67-69">source</a><a href="#impl-Readable-for-END_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::mwu::region::end::<a class="struct" href="../mwu/region/end/struct.END_SPEC.html" title="struct nrf52840_pac::mwu::region::end::END_SPEC">END_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../mwu/region/end/struct.R.html" title="struct nrf52840_pac::mwu::region::end::R">end::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-181" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/mwu/region/end.rs.html#68">source</a><a href="#associatedtype.Reader-181" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../mwu/region/end/struct.R.html" title="struct nrf52840_pac::mwu::region::end::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-START_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/mwu/region/start.rs.html#67-69">source</a><a href="#impl-Readable-for-START_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::mwu::region::start::<a class="struct" href="../mwu/region/start/struct.START_SPEC.html" title="struct nrf52840_pac::mwu::region::start::START_SPEC">START_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../mwu/region/start/struct.R.html" title="struct nrf52840_pac::mwu::region::start::R">start::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-182" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/mwu/region/start.rs.html#68">source</a><a href="#associatedtype.Reader-182" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../mwu/region/start/struct.R.html" title="struct nrf52840_pac::mwu::region::start::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-REGIONEN_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/mwu/regionen.rs.html#773-775">source</a><a href="#impl-Readable-for-REGIONEN_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../mwu/regionen/struct.REGIONEN_SPEC.html" title="struct nrf52840_pac::mwu::regionen::REGIONEN_SPEC">REGIONEN_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../mwu/regionen/struct.R.html" title="struct nrf52840_pac::mwu::regionen::R">regionen::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-183" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/mwu/regionen.rs.html#774">source</a><a href="#associatedtype.Reader-183" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../mwu/regionen/struct.R.html" title="struct nrf52840_pac::mwu::regionen::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-REGIONENCLR_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/mwu/regionenclr.rs.html#857-859">source</a><a href="#impl-Readable-for-REGIONENCLR_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../mwu/regionenclr/struct.REGIONENCLR_SPEC.html" title="struct nrf52840_pac::mwu::regionenclr::REGIONENCLR_SPEC">REGIONENCLR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../mwu/regionenclr/struct.R.html" title="struct nrf52840_pac::mwu::regionenclr::R">regionenclr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-184" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/mwu/regionenclr.rs.html#858">source</a><a href="#associatedtype.Reader-184" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../mwu/regionenclr/struct.R.html" title="struct nrf52840_pac::mwu::regionenclr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-REGIONENSET_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/mwu/regionenset.rs.html#857-859">source</a><a href="#impl-Readable-for-REGIONENSET_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../mwu/regionenset/struct.REGIONENSET_SPEC.html" title="struct nrf52840_pac::mwu::regionenset::REGIONENSET_SPEC">REGIONENSET_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../mwu/regionenset/struct.R.html" title="struct nrf52840_pac::mwu::regionenset::R">regionenset::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-185" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/mwu/regionenset.rs.html#858">source</a><a href="#associatedtype.Reader-185" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../mwu/regionenset/struct.R.html" title="struct nrf52840_pac::mwu::regionenset::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-AUTOCOLRESCONFIG_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/autocolresconfig.rs.html#113-115">source</a><a href="#impl-Readable-for-AUTOCOLRESCONFIG_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../nfct/autocolresconfig/struct.AUTOCOLRESCONFIG_SPEC.html" title="struct nrf52840_pac::nfct::autocolresconfig::AUTOCOLRESCONFIG_SPEC">AUTOCOLRESCONFIG_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../nfct/autocolresconfig/struct.R.html" title="struct nrf52840_pac::nfct::autocolresconfig::R">autocolresconfig::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-186" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/autocolresconfig.rs.html#114">source</a><a href="#associatedtype.Reader-186" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../nfct/autocolresconfig/struct.R.html" title="struct nrf52840_pac::nfct::autocolresconfig::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ERRORSTATUS_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/errorstatus.rs.html#68-70">source</a><a href="#impl-Readable-for-ERRORSTATUS_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../nfct/errorstatus/struct.ERRORSTATUS_SPEC.html" title="struct nrf52840_pac::nfct::errorstatus::ERRORSTATUS_SPEC">ERRORSTATUS_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../nfct/errorstatus/struct.R.html" title="struct nrf52840_pac::nfct::errorstatus::R">errorstatus::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-187" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/errorstatus.rs.html#69">source</a><a href="#associatedtype.Reader-187" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../nfct/errorstatus/struct.R.html" title="struct nrf52840_pac::nfct::errorstatus::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_AUTOCOLRESSTARTED_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/events_autocolresstarted.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_AUTOCOLRESSTARTED_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../nfct/events_autocolresstarted/struct.EVENTS_AUTOCOLRESSTARTED_SPEC.html" title="struct nrf52840_pac::nfct::events_autocolresstarted::EVENTS_AUTOCOLRESSTARTED_SPEC">EVENTS_AUTOCOLRESSTARTED_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../nfct/events_autocolresstarted/struct.R.html" title="struct nrf52840_pac::nfct::events_autocolresstarted::R">events_autocolresstarted::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-188" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/events_autocolresstarted.rs.html#69">source</a><a href="#associatedtype.Reader-188" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../nfct/events_autocolresstarted/struct.R.html" title="struct nrf52840_pac::nfct::events_autocolresstarted::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_COLLISION_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/events_collision.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_COLLISION_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../nfct/events_collision/struct.EVENTS_COLLISION_SPEC.html" title="struct nrf52840_pac::nfct::events_collision::EVENTS_COLLISION_SPEC">EVENTS_COLLISION_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../nfct/events_collision/struct.R.html" title="struct nrf52840_pac::nfct::events_collision::R">events_collision::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-189" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/events_collision.rs.html#69">source</a><a href="#associatedtype.Reader-189" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../nfct/events_collision/struct.R.html" title="struct nrf52840_pac::nfct::events_collision::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_ENDRX_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/events_endrx.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_ENDRX_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::nfct::events_endrx::<a class="struct" href="../nfct/events_endrx/struct.EVENTS_ENDRX_SPEC.html" title="struct nrf52840_pac::nfct::events_endrx::EVENTS_ENDRX_SPEC">EVENTS_ENDRX_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../nfct/events_endrx/struct.R.html" title="struct nrf52840_pac::nfct::events_endrx::R">events_endrx::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-190" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/events_endrx.rs.html#68">source</a><a href="#associatedtype.Reader-190" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../nfct/events_endrx/struct.R.html" title="struct nrf52840_pac::nfct::events_endrx::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_ENDTX_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/events_endtx.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_ENDTX_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::nfct::events_endtx::<a class="struct" href="../nfct/events_endtx/struct.EVENTS_ENDTX_SPEC.html" title="struct nrf52840_pac::nfct::events_endtx::EVENTS_ENDTX_SPEC">EVENTS_ENDTX_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../nfct/events_endtx/struct.R.html" title="struct nrf52840_pac::nfct::events_endtx::R">events_endtx::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-191" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/events_endtx.rs.html#68">source</a><a href="#associatedtype.Reader-191" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../nfct/events_endtx/struct.R.html" title="struct nrf52840_pac::nfct::events_endtx::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_ERROR_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/events_error.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_ERROR_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::nfct::events_error::<a class="struct" href="../nfct/events_error/struct.EVENTS_ERROR_SPEC.html" title="struct nrf52840_pac::nfct::events_error::EVENTS_ERROR_SPEC">EVENTS_ERROR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../nfct/events_error/struct.R.html" title="struct nrf52840_pac::nfct::events_error::R">events_error::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-192" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/events_error.rs.html#68">source</a><a href="#associatedtype.Reader-192" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../nfct/events_error/struct.R.html" title="struct nrf52840_pac::nfct::events_error::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_FIELDDETECTED_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/events_fielddetected.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_FIELDDETECTED_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../nfct/events_fielddetected/struct.EVENTS_FIELDDETECTED_SPEC.html" title="struct nrf52840_pac::nfct::events_fielddetected::EVENTS_FIELDDETECTED_SPEC">EVENTS_FIELDDETECTED_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../nfct/events_fielddetected/struct.R.html" title="struct nrf52840_pac::nfct::events_fielddetected::R">events_fielddetected::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-193" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/events_fielddetected.rs.html#69">source</a><a href="#associatedtype.Reader-193" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../nfct/events_fielddetected/struct.R.html" title="struct nrf52840_pac::nfct::events_fielddetected::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_FIELDLOST_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/events_fieldlost.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_FIELDLOST_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../nfct/events_fieldlost/struct.EVENTS_FIELDLOST_SPEC.html" title="struct nrf52840_pac::nfct::events_fieldlost::EVENTS_FIELDLOST_SPEC">EVENTS_FIELDLOST_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../nfct/events_fieldlost/struct.R.html" title="struct nrf52840_pac::nfct::events_fieldlost::R">events_fieldlost::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-194" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/events_fieldlost.rs.html#69">source</a><a href="#associatedtype.Reader-194" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../nfct/events_fieldlost/struct.R.html" title="struct nrf52840_pac::nfct::events_fieldlost::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_READY_SPEC-2" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/events_ready.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_READY_SPEC-2" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::nfct::events_ready::<a class="struct" href="../nfct/events_ready/struct.EVENTS_READY_SPEC.html" title="struct nrf52840_pac::nfct::events_ready::EVENTS_READY_SPEC">EVENTS_READY_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../nfct/events_ready/struct.R.html" title="struct nrf52840_pac::nfct::events_ready::R">events_ready::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-195" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/events_ready.rs.html#68">source</a><a href="#associatedtype.Reader-195" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../nfct/events_ready/struct.R.html" title="struct nrf52840_pac::nfct::events_ready::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_RXERROR_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/events_rxerror.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_RXERROR_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../nfct/events_rxerror/struct.EVENTS_RXERROR_SPEC.html" title="struct nrf52840_pac::nfct::events_rxerror::EVENTS_RXERROR_SPEC">EVENTS_RXERROR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../nfct/events_rxerror/struct.R.html" title="struct nrf52840_pac::nfct::events_rxerror::R">events_rxerror::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-196" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/events_rxerror.rs.html#69">source</a><a href="#associatedtype.Reader-196" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../nfct/events_rxerror/struct.R.html" title="struct nrf52840_pac::nfct::events_rxerror::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_RXFRAMEEND_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/events_rxframeend.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_RXFRAMEEND_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../nfct/events_rxframeend/struct.EVENTS_RXFRAMEEND_SPEC.html" title="struct nrf52840_pac::nfct::events_rxframeend::EVENTS_RXFRAMEEND_SPEC">EVENTS_RXFRAMEEND_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../nfct/events_rxframeend/struct.R.html" title="struct nrf52840_pac::nfct::events_rxframeend::R">events_rxframeend::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-197" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/events_rxframeend.rs.html#69">source</a><a href="#associatedtype.Reader-197" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../nfct/events_rxframeend/struct.R.html" title="struct nrf52840_pac::nfct::events_rxframeend::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_RXFRAMESTART_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/events_rxframestart.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_RXFRAMESTART_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../nfct/events_rxframestart/struct.EVENTS_RXFRAMESTART_SPEC.html" title="struct nrf52840_pac::nfct::events_rxframestart::EVENTS_RXFRAMESTART_SPEC">EVENTS_RXFRAMESTART_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../nfct/events_rxframestart/struct.R.html" title="struct nrf52840_pac::nfct::events_rxframestart::R">events_rxframestart::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-198" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/events_rxframestart.rs.html#69">source</a><a href="#associatedtype.Reader-198" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../nfct/events_rxframestart/struct.R.html" title="struct nrf52840_pac::nfct::events_rxframestart::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_SELECTED_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/events_selected.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_SELECTED_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../nfct/events_selected/struct.EVENTS_SELECTED_SPEC.html" title="struct nrf52840_pac::nfct::events_selected::EVENTS_SELECTED_SPEC">EVENTS_SELECTED_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../nfct/events_selected/struct.R.html" title="struct nrf52840_pac::nfct::events_selected::R">events_selected::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-199" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/events_selected.rs.html#69">source</a><a href="#associatedtype.Reader-199" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../nfct/events_selected/struct.R.html" title="struct nrf52840_pac::nfct::events_selected::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_STARTED_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/events_started.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_STARTED_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::nfct::events_started::<a class="struct" href="../nfct/events_started/struct.EVENTS_STARTED_SPEC.html" title="struct nrf52840_pac::nfct::events_started::EVENTS_STARTED_SPEC">EVENTS_STARTED_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../nfct/events_started/struct.R.html" title="struct nrf52840_pac::nfct::events_started::R">events_started::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-200" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/events_started.rs.html#69">source</a><a href="#associatedtype.Reader-200" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../nfct/events_started/struct.R.html" title="struct nrf52840_pac::nfct::events_started::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_TXFRAMEEND_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/events_txframeend.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_TXFRAMEEND_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../nfct/events_txframeend/struct.EVENTS_TXFRAMEEND_SPEC.html" title="struct nrf52840_pac::nfct::events_txframeend::EVENTS_TXFRAMEEND_SPEC">EVENTS_TXFRAMEEND_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../nfct/events_txframeend/struct.R.html" title="struct nrf52840_pac::nfct::events_txframeend::R">events_txframeend::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-201" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/events_txframeend.rs.html#69">source</a><a href="#associatedtype.Reader-201" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../nfct/events_txframeend/struct.R.html" title="struct nrf52840_pac::nfct::events_txframeend::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_TXFRAMESTART_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/events_txframestart.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_TXFRAMESTART_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../nfct/events_txframestart/struct.EVENTS_TXFRAMESTART_SPEC.html" title="struct nrf52840_pac::nfct::events_txframestart::EVENTS_TXFRAMESTART_SPEC">EVENTS_TXFRAMESTART_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../nfct/events_txframestart/struct.R.html" title="struct nrf52840_pac::nfct::events_txframestart::R">events_txframestart::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-202" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/events_txframestart.rs.html#69">source</a><a href="#associatedtype.Reader-202" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../nfct/events_txframestart/struct.R.html" title="struct nrf52840_pac::nfct::events_txframestart::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-FIELDPRESENT_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/fieldpresent.rs.html#106-108">source</a><a href="#impl-Readable-for-FIELDPRESENT_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../nfct/fieldpresent/struct.FIELDPRESENT_SPEC.html" title="struct nrf52840_pac::nfct::fieldpresent::FIELDPRESENT_SPEC">FIELDPRESENT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../nfct/fieldpresent/struct.R.html" title="struct nrf52840_pac::nfct::fieldpresent::R">fieldpresent::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-203" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/fieldpresent.rs.html#107">source</a><a href="#associatedtype.Reader-203" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../nfct/fieldpresent/struct.R.html" title="struct nrf52840_pac::nfct::fieldpresent::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-FRAMEDELAYMAX_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/framedelaymax.rs.html#68-70">source</a><a href="#impl-Readable-for-FRAMEDELAYMAX_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../nfct/framedelaymax/struct.FRAMEDELAYMAX_SPEC.html" title="struct nrf52840_pac::nfct::framedelaymax::FRAMEDELAYMAX_SPEC">FRAMEDELAYMAX_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../nfct/framedelaymax/struct.R.html" title="struct nrf52840_pac::nfct::framedelaymax::R">framedelaymax::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-204" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/framedelaymax.rs.html#69">source</a><a href="#associatedtype.Reader-204" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../nfct/framedelaymax/struct.R.html" title="struct nrf52840_pac::nfct::framedelaymax::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-FRAMEDELAYMIN_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/framedelaymin.rs.html#68-70">source</a><a href="#impl-Readable-for-FRAMEDELAYMIN_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../nfct/framedelaymin/struct.FRAMEDELAYMIN_SPEC.html" title="struct nrf52840_pac::nfct::framedelaymin::FRAMEDELAYMIN_SPEC">FRAMEDELAYMIN_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../nfct/framedelaymin/struct.R.html" title="struct nrf52840_pac::nfct::framedelaymin::R">framedelaymin::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-205" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/framedelaymin.rs.html#69">source</a><a href="#associatedtype.Reader-205" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../nfct/framedelaymin/struct.R.html" title="struct nrf52840_pac::nfct::framedelaymin::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-FRAMEDELAYMODE_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/framedelaymode.rs.html#142-144">source</a><a href="#impl-Readable-for-FRAMEDELAYMODE_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../nfct/framedelaymode/struct.FRAMEDELAYMODE_SPEC.html" title="struct nrf52840_pac::nfct::framedelaymode::FRAMEDELAYMODE_SPEC">FRAMEDELAYMODE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../nfct/framedelaymode/struct.R.html" title="struct nrf52840_pac::nfct::framedelaymode::R">framedelaymode::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-206" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/framedelaymode.rs.html#143">source</a><a href="#associatedtype.Reader-206" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../nfct/framedelaymode/struct.R.html" title="struct nrf52840_pac::nfct::framedelaymode::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-RX_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/framestatus/rx.rs.html#233-235">source</a><a href="#impl-Readable-for-RX_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../nfct/framestatus/rx/struct.RX_SPEC.html" title="struct nrf52840_pac::nfct::framestatus::rx::RX_SPEC">RX_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../nfct/framestatus/rx/struct.R.html" title="struct nrf52840_pac::nfct::framestatus::rx::R">rx::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-207" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/framestatus/rx.rs.html#234">source</a><a href="#associatedtype.Reader-207" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../nfct/framestatus/rx/struct.R.html" title="struct nrf52840_pac::nfct::framestatus::rx::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTEN_SPEC-4" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/inten.rs.html#955-957">source</a><a href="#impl-Readable-for-INTEN_SPEC-4" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::nfct::inten::<a class="struct" href="../nfct/inten/struct.INTEN_SPEC.html" title="struct nrf52840_pac::nfct::inten::INTEN_SPEC">INTEN_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../nfct/inten/struct.R.html" title="struct nrf52840_pac::nfct::inten::R">inten::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-208" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/inten.rs.html#956">source</a><a href="#associatedtype.Reader-208" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../nfct/inten/struct.R.html" title="struct nrf52840_pac::nfct::inten::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENCLR_SPEC-10" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/intenclr.rs.html#1062-1064">source</a><a href="#impl-Readable-for-INTENCLR_SPEC-10" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::nfct::intenclr::<a class="struct" href="../nfct/intenclr/struct.INTENCLR_SPEC.html" title="struct nrf52840_pac::nfct::intenclr::INTENCLR_SPEC">INTENCLR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../nfct/intenclr/struct.R.html" title="struct nrf52840_pac::nfct::intenclr::R">intenclr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-209" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/intenclr.rs.html#1063">source</a><a href="#associatedtype.Reader-209" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../nfct/intenclr/struct.R.html" title="struct nrf52840_pac::nfct::intenclr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENSET_SPEC-10" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/intenset.rs.html#1062-1064">source</a><a href="#impl-Readable-for-INTENSET_SPEC-10" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::nfct::intenset::<a class="struct" href="../nfct/intenset/struct.INTENSET_SPEC.html" title="struct nrf52840_pac::nfct::intenset::INTENSET_SPEC">INTENSET_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../nfct/intenset/struct.R.html" title="struct nrf52840_pac::nfct::intenset::R">intenset::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-210" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/intenset.rs.html#1063">source</a><a href="#associatedtype.Reader-210" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../nfct/intenset/struct.R.html" title="struct nrf52840_pac::nfct::intenset::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-MAXLEN_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/maxlen.rs.html#67-69">source</a><a href="#impl-Readable-for-MAXLEN_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../nfct/maxlen/struct.MAXLEN_SPEC.html" title="struct nrf52840_pac::nfct::maxlen::MAXLEN_SPEC">MAXLEN_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../nfct/maxlen/struct.R.html" title="struct nrf52840_pac::nfct::maxlen::R">maxlen::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-211" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/maxlen.rs.html#68">source</a><a href="#associatedtype.Reader-211" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../nfct/maxlen/struct.R.html" title="struct nrf52840_pac::nfct::maxlen::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-NFCID1_2ND_LAST_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/nfcid1_2nd_last.rs.html#98-100">source</a><a href="#impl-Readable-for-NFCID1_2ND_LAST_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../nfct/nfcid1_2nd_last/struct.NFCID1_2ND_LAST_SPEC.html" title="struct nrf52840_pac::nfct::nfcid1_2nd_last::NFCID1_2ND_LAST_SPEC">NFCID1_2ND_LAST_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../nfct/nfcid1_2nd_last/struct.R.html" title="struct nrf52840_pac::nfct::nfcid1_2nd_last::R">nfcid1_2nd_last::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-212" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/nfcid1_2nd_last.rs.html#99">source</a><a href="#associatedtype.Reader-212" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../nfct/nfcid1_2nd_last/struct.R.html" title="struct nrf52840_pac::nfct::nfcid1_2nd_last::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-NFCID1_3RD_LAST_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/nfcid1_3rd_last.rs.html#98-100">source</a><a href="#impl-Readable-for-NFCID1_3RD_LAST_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../nfct/nfcid1_3rd_last/struct.NFCID1_3RD_LAST_SPEC.html" title="struct nrf52840_pac::nfct::nfcid1_3rd_last::NFCID1_3RD_LAST_SPEC">NFCID1_3RD_LAST_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../nfct/nfcid1_3rd_last/struct.R.html" title="struct nrf52840_pac::nfct::nfcid1_3rd_last::R">nfcid1_3rd_last::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-213" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/nfcid1_3rd_last.rs.html#99">source</a><a href="#associatedtype.Reader-213" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../nfct/nfcid1_3rd_last/struct.R.html" title="struct nrf52840_pac::nfct::nfcid1_3rd_last::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-NFCID1_LAST_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/nfcid1_last.rs.html#109-111">source</a><a href="#impl-Readable-for-NFCID1_LAST_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../nfct/nfcid1_last/struct.NFCID1_LAST_SPEC.html" title="struct nrf52840_pac::nfct::nfcid1_last::NFCID1_LAST_SPEC">NFCID1_LAST_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../nfct/nfcid1_last/struct.R.html" title="struct nrf52840_pac::nfct::nfcid1_last::R">nfcid1_last::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-214" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/nfcid1_last.rs.html#110">source</a><a href="#associatedtype.Reader-214" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../nfct/nfcid1_last/struct.R.html" title="struct nrf52840_pac::nfct::nfcid1_last::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-NFCTAGSTATE_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/nfctagstate.rs.html#99-101">source</a><a href="#impl-Readable-for-NFCTAGSTATE_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../nfct/nfctagstate/struct.NFCTAGSTATE_SPEC.html" title="struct nrf52840_pac::nfct::nfctagstate::NFCTAGSTATE_SPEC">NFCTAGSTATE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../nfct/nfctagstate/struct.R.html" title="struct nrf52840_pac::nfct::nfctagstate::R">nfctagstate::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-215" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/nfctagstate.rs.html#100">source</a><a href="#associatedtype.Reader-215" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../nfct/nfctagstate/struct.R.html" title="struct nrf52840_pac::nfct::nfctagstate::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-PACKETPTR_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/packetptr.rs.html#67-69">source</a><a href="#impl-Readable-for-PACKETPTR_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::nfct::packetptr::<a class="struct" href="../nfct/packetptr/struct.PACKETPTR_SPEC.html" title="struct nrf52840_pac::nfct::packetptr::PACKETPTR_SPEC">PACKETPTR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../nfct/packetptr/struct.R.html" title="struct nrf52840_pac::nfct::packetptr::R">packetptr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-216" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/packetptr.rs.html#68">source</a><a href="#associatedtype.Reader-216" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../nfct/packetptr/struct.R.html" title="struct nrf52840_pac::nfct::packetptr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-AMOUNT_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/rxd/amount.rs.html#38-40">source</a><a href="#impl-Readable-for-AMOUNT_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::nfct::rxd::amount::<a class="struct" href="../nfct/rxd/amount/struct.AMOUNT_SPEC.html" title="struct nrf52840_pac::nfct::rxd::amount::AMOUNT_SPEC">AMOUNT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../nfct/rxd/amount/struct.R.html" title="struct nrf52840_pac::nfct::rxd::amount::R">amount::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-217" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/rxd/amount.rs.html#39">source</a><a href="#associatedtype.Reader-217" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../nfct/rxd/amount/struct.R.html" title="struct nrf52840_pac::nfct::rxd::amount::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-FRAMECONFIG_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/rxd/frameconfig.rs.html#233-235">source</a><a href="#impl-Readable-for-FRAMECONFIG_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::nfct::rxd::frameconfig::<a class="struct" href="../nfct/rxd/frameconfig/struct.FRAMECONFIG_SPEC.html" title="struct nrf52840_pac::nfct::rxd::frameconfig::FRAMECONFIG_SPEC">FRAMECONFIG_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../nfct/rxd/frameconfig/struct.R.html" title="struct nrf52840_pac::nfct::rxd::frameconfig::R">frameconfig::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-218" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/rxd/frameconfig.rs.html#234">source</a><a href="#associatedtype.Reader-218" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../nfct/rxd/frameconfig/struct.R.html" title="struct nrf52840_pac::nfct::rxd::frameconfig::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-SELRES_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/selres.rs.html#123-125">source</a><a href="#impl-Readable-for-SELRES_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../nfct/selres/struct.SELRES_SPEC.html" title="struct nrf52840_pac::nfct::selres::SELRES_SPEC">SELRES_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../nfct/selres/struct.R.html" title="struct nrf52840_pac::nfct::selres::R">selres::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-219" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/selres.rs.html#124">source</a><a href="#associatedtype.Reader-219" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../nfct/selres/struct.R.html" title="struct nrf52840_pac::nfct::selres::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-SENSRES_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/sensres.rs.html#286-288">source</a><a href="#impl-Readable-for-SENSRES_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../nfct/sensres/struct.SENSRES_SPEC.html" title="struct nrf52840_pac::nfct::sensres::SENSRES_SPEC">SENSRES_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../nfct/sensres/struct.R.html" title="struct nrf52840_pac::nfct::sensres::R">sensres::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-220" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/sensres.rs.html#287">source</a><a href="#associatedtype.Reader-220" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../nfct/sensres/struct.R.html" title="struct nrf52840_pac::nfct::sensres::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-SHORTS_SPEC-3" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/shorts.rs.html#236-238">source</a><a href="#impl-Readable-for-SHORTS_SPEC-3" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::nfct::shorts::<a class="struct" href="../nfct/shorts/struct.SHORTS_SPEC.html" title="struct nrf52840_pac::nfct::shorts::SHORTS_SPEC">SHORTS_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../nfct/shorts/struct.R.html" title="struct nrf52840_pac::nfct::shorts::R">shorts::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-221" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/shorts.rs.html#237">source</a><a href="#associatedtype.Reader-221" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../nfct/shorts/struct.R.html" title="struct nrf52840_pac::nfct::shorts::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-SLEEPSTATE_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/sleepstate.rs.html#65-67">source</a><a href="#impl-Readable-for-SLEEPSTATE_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../nfct/sleepstate/struct.SLEEPSTATE_SPEC.html" title="struct nrf52840_pac::nfct::sleepstate::SLEEPSTATE_SPEC">SLEEPSTATE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../nfct/sleepstate/struct.R.html" title="struct nrf52840_pac::nfct::sleepstate::R">sleepstate::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-222" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/sleepstate.rs.html#66">source</a><a href="#associatedtype.Reader-222" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../nfct/sleepstate/struct.R.html" title="struct nrf52840_pac::nfct::sleepstate::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-AMOUNT_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/txd/amount.rs.html#81-83">source</a><a href="#impl-Readable-for-AMOUNT_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::nfct::txd::amount::<a class="struct" href="../nfct/txd/amount/struct.AMOUNT_SPEC.html" title="struct nrf52840_pac::nfct::txd::amount::AMOUNT_SPEC">AMOUNT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../nfct/txd/amount/struct.R.html" title="struct nrf52840_pac::nfct::txd::amount::R">amount::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-223" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/txd/amount.rs.html#82">source</a><a href="#associatedtype.Reader-223" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../nfct/txd/amount/struct.R.html" title="struct nrf52840_pac::nfct::txd::amount::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-FRAMECONFIG_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/txd/frameconfig.rs.html#294-296">source</a><a href="#impl-Readable-for-FRAMECONFIG_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::nfct::txd::frameconfig::<a class="struct" href="../nfct/txd/frameconfig/struct.FRAMECONFIG_SPEC.html" title="struct nrf52840_pac::nfct::txd::frameconfig::FRAMECONFIG_SPEC">FRAMECONFIG_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../nfct/txd/frameconfig/struct.R.html" title="struct nrf52840_pac::nfct::txd::frameconfig::R">frameconfig::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-224" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/nfct/txd/frameconfig.rs.html#295">source</a><a href="#associatedtype.Reader-224" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../nfct/txd/frameconfig/struct.R.html" title="struct nrf52840_pac::nfct::txd::frameconfig::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-CONFIG_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/nvmc/config.rs.html#128-130">source</a><a href="#impl-Readable-for-CONFIG_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::nvmc::config::<a class="struct" href="../nvmc/config/struct.CONFIG_SPEC.html" title="struct nrf52840_pac::nvmc::config::CONFIG_SPEC">CONFIG_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../nvmc/config/struct.R.html" title="struct nrf52840_pac::nvmc::config::R">config::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-225" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/nvmc/config.rs.html#129">source</a><a href="#associatedtype.Reader-225" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../nvmc/config/struct.R.html" title="struct nrf52840_pac::nvmc::config::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ERASEALL_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/nvmc/eraseall.rs.html#113-115">source</a><a href="#impl-Readable-for-ERASEALL_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../nvmc/eraseall/struct.ERASEALL_SPEC.html" title="struct nrf52840_pac::nvmc::eraseall::ERASEALL_SPEC">ERASEALL_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../nvmc/eraseall/struct.R.html" title="struct nrf52840_pac::nvmc::eraseall::R">eraseall::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-226" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/nvmc/eraseall.rs.html#114">source</a><a href="#associatedtype.Reader-226" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../nvmc/eraseall/struct.R.html" title="struct nrf52840_pac::nvmc::eraseall::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ERASEPAGE_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/nvmc/erasepage.rs.html#68-70">source</a><a href="#impl-Readable-for-ERASEPAGE_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../nvmc/erasepage/struct.ERASEPAGE_SPEC.html" title="struct nrf52840_pac::nvmc::erasepage::ERASEPAGE_SPEC">ERASEPAGE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../nvmc/erasepage/struct.R.html" title="struct nrf52840_pac::nvmc::erasepage::R">erasepage::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-227" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/nvmc/erasepage.rs.html#69">source</a><a href="#associatedtype.Reader-227" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../nvmc/erasepage/struct.R.html" title="struct nrf52840_pac::nvmc::erasepage::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ERASEPAGEPARTIAL_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/nvmc/erasepagepartial.rs.html#68-70">source</a><a href="#impl-Readable-for-ERASEPAGEPARTIAL_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../nvmc/erasepagepartial/struct.ERASEPAGEPARTIAL_SPEC.html" title="struct nrf52840_pac::nvmc::erasepagepartial::ERASEPAGEPARTIAL_SPEC">ERASEPAGEPARTIAL_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../nvmc/erasepagepartial/struct.R.html" title="struct nrf52840_pac::nvmc::erasepagepartial::R">erasepagepartial::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-228" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/nvmc/erasepagepartial.rs.html#69">source</a><a href="#associatedtype.Reader-228" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../nvmc/erasepagepartial/struct.R.html" title="struct nrf52840_pac::nvmc::erasepagepartial::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ERASEPAGEPARTIALCFG_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/nvmc/erasepagepartialcfg.rs.html#68-70">source</a><a href="#impl-Readable-for-ERASEPAGEPARTIALCFG_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../nvmc/erasepagepartialcfg/struct.ERASEPAGEPARTIALCFG_SPEC.html" title="struct nrf52840_pac::nvmc::erasepagepartialcfg::ERASEPAGEPARTIALCFG_SPEC">ERASEPAGEPARTIALCFG_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../nvmc/erasepagepartialcfg/struct.R.html" title="struct nrf52840_pac::nvmc::erasepagepartialcfg::R">erasepagepartialcfg::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-229" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/nvmc/erasepagepartialcfg.rs.html#69">source</a><a href="#associatedtype.Reader-229" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../nvmc/erasepagepartialcfg/struct.R.html" title="struct nrf52840_pac::nvmc::erasepagepartialcfg::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ERASEPCR0_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/nvmc/erasepcr0.rs.html#68-70">source</a><a href="#impl-Readable-for-ERASEPCR0_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../nvmc/erasepcr0/struct.ERASEPCR0_SPEC.html" title="struct nrf52840_pac::nvmc::erasepcr0::ERASEPCR0_SPEC">ERASEPCR0_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../nvmc/erasepcr0/struct.R.html" title="struct nrf52840_pac::nvmc::erasepcr0::R">erasepcr0::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-230" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/nvmc/erasepcr0.rs.html#69">source</a><a href="#associatedtype.Reader-230" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../nvmc/erasepcr0/struct.R.html" title="struct nrf52840_pac::nvmc::erasepcr0::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ERASEPCR1_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/nvmc/erasepcr1.rs.html#68-70">source</a><a href="#impl-Readable-for-ERASEPCR1_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../nvmc/erasepcr1/struct.ERASEPCR1_SPEC.html" title="struct nrf52840_pac::nvmc::erasepcr1::ERASEPCR1_SPEC">ERASEPCR1_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../nvmc/erasepcr1/struct.R.html" title="struct nrf52840_pac::nvmc::erasepcr1::R">erasepcr1::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-231" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/nvmc/erasepcr1.rs.html#69">source</a><a href="#associatedtype.Reader-231" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../nvmc/erasepcr1/struct.R.html" title="struct nrf52840_pac::nvmc::erasepcr1::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ERASEUICR_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/nvmc/eraseuicr.rs.html#113-115">source</a><a href="#impl-Readable-for-ERASEUICR_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../nvmc/eraseuicr/struct.ERASEUICR_SPEC.html" title="struct nrf52840_pac::nvmc::eraseuicr::ERASEUICR_SPEC">ERASEUICR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../nvmc/eraseuicr/struct.R.html" title="struct nrf52840_pac::nvmc::eraseuicr::R">eraseuicr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-232" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/nvmc/eraseuicr.rs.html#114">source</a><a href="#associatedtype.Reader-232" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../nvmc/eraseuicr/struct.R.html" title="struct nrf52840_pac::nvmc::eraseuicr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ICACHECNF_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/nvmc/icachecnf.rs.html#174-176">source</a><a href="#impl-Readable-for-ICACHECNF_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../nvmc/icachecnf/struct.ICACHECNF_SPEC.html" title="struct nrf52840_pac::nvmc::icachecnf::ICACHECNF_SPEC">ICACHECNF_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../nvmc/icachecnf/struct.R.html" title="struct nrf52840_pac::nvmc::icachecnf::R">icachecnf::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-233" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/nvmc/icachecnf.rs.html#175">source</a><a href="#associatedtype.Reader-233" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../nvmc/icachecnf/struct.R.html" title="struct nrf52840_pac::nvmc::icachecnf::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-IHIT_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/nvmc/ihit.rs.html#67-69">source</a><a href="#impl-Readable-for-IHIT_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../nvmc/ihit/struct.IHIT_SPEC.html" title="struct nrf52840_pac::nvmc::ihit::IHIT_SPEC">IHIT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../nvmc/ihit/struct.R.html" title="struct nrf52840_pac::nvmc::ihit::R">ihit::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-234" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/nvmc/ihit.rs.html#68">source</a><a href="#associatedtype.Reader-234" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../nvmc/ihit/struct.R.html" title="struct nrf52840_pac::nvmc::ihit::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-IMISS_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/nvmc/imiss.rs.html#67-69">source</a><a href="#impl-Readable-for-IMISS_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../nvmc/imiss/struct.IMISS_SPEC.html" title="struct nrf52840_pac::nvmc::imiss::IMISS_SPEC">IMISS_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../nvmc/imiss/struct.R.html" title="struct nrf52840_pac::nvmc::imiss::R">imiss::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-235" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/nvmc/imiss.rs.html#68">source</a><a href="#associatedtype.Reader-235" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../nvmc/imiss/struct.R.html" title="struct nrf52840_pac::nvmc::imiss::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-READY_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/nvmc/ready.rs.html#65-67">source</a><a href="#impl-Readable-for-READY_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../nvmc/ready/struct.READY_SPEC.html" title="struct nrf52840_pac::nvmc::ready::READY_SPEC">READY_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../nvmc/ready/struct.R.html" title="struct nrf52840_pac::nvmc::ready::R">ready::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-236" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/nvmc/ready.rs.html#66">source</a><a href="#associatedtype.Reader-236" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../nvmc/ready/struct.R.html" title="struct nrf52840_pac::nvmc::ready::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-READYNEXT_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/nvmc/readynext.rs.html#65-67">source</a><a href="#impl-Readable-for-READYNEXT_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../nvmc/readynext/struct.READYNEXT_SPEC.html" title="struct nrf52840_pac::nvmc::readynext::READYNEXT_SPEC">READYNEXT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../nvmc/readynext/struct.R.html" title="struct nrf52840_pac::nvmc::readynext::R">readynext::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-237" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/nvmc/readynext.rs.html#66">source</a><a href="#associatedtype.Reader-237" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../nvmc/readynext/struct.R.html" title="struct nrf52840_pac::nvmc::readynext::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-DETECTMODE_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/p0/detectmode.rs.html#114-116">source</a><a href="#impl-Readable-for-DETECTMODE_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../p0/detectmode/struct.DETECTMODE_SPEC.html" title="struct nrf52840_pac::p0::detectmode::DETECTMODE_SPEC">DETECTMODE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../p0/detectmode/struct.R.html" title="struct nrf52840_pac::p0::detectmode::R">detectmode::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-238" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/p0/detectmode.rs.html#115">source</a><a href="#associatedtype.Reader-238" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../p0/detectmode/struct.R.html" title="struct nrf52840_pac::p0::detectmode::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-DIR_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/p0/dir.rs.html#1973-1975">source</a><a href="#impl-Readable-for-DIR_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../p0/dir/struct.DIR_SPEC.html" title="struct nrf52840_pac::p0::dir::DIR_SPEC">DIR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../p0/dir/struct.R.html" title="struct nrf52840_pac::p0::dir::R">dir::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-239" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/p0/dir.rs.html#1974">source</a><a href="#associatedtype.Reader-239" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../p0/dir/struct.R.html" title="struct nrf52840_pac::p0::dir::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-DIRCLR_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/p0/dirclr.rs.html#2197-2199">source</a><a href="#impl-Readable-for-DIRCLR_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../p0/dirclr/struct.DIRCLR_SPEC.html" title="struct nrf52840_pac::p0::dirclr::DIRCLR_SPEC">DIRCLR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../p0/dirclr/struct.R.html" title="struct nrf52840_pac::p0::dirclr::R">dirclr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-240" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/p0/dirclr.rs.html#2198">source</a><a href="#associatedtype.Reader-240" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../p0/dirclr/struct.R.html" title="struct nrf52840_pac::p0::dirclr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-DIRSET_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/p0/dirset.rs.html#2197-2199">source</a><a href="#impl-Readable-for-DIRSET_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../p0/dirset/struct.DIRSET_SPEC.html" title="struct nrf52840_pac::p0::dirset::DIRSET_SPEC">DIRSET_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../p0/dirset/struct.R.html" title="struct nrf52840_pac::p0::dirset::R">dirset::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-241" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/p0/dirset.rs.html#2198">source</a><a href="#associatedtype.Reader-241" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../p0/dirset/struct.R.html" title="struct nrf52840_pac::p0::dirset::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-IN_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/p0/in_.rs.html#1336-1338">source</a><a href="#impl-Readable-for-IN_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../p0/in_/struct.IN_SPEC.html" title="struct nrf52840_pac::p0::in_::IN_SPEC">IN_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../p0/in_/struct.R.html" title="struct nrf52840_pac::p0::in_::R">in_::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-242" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/p0/in_.rs.html#1337">source</a><a href="#associatedtype.Reader-242" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../p0/in_/struct.R.html" title="struct nrf52840_pac::p0::in_::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-LATCH_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/p0/latch.rs.html#1973-1975">source</a><a href="#impl-Readable-for-LATCH_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../p0/latch/struct.LATCH_SPEC.html" title="struct nrf52840_pac::p0::latch::LATCH_SPEC">LATCH_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../p0/latch/struct.R.html" title="struct nrf52840_pac::p0::latch::R">latch::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-243" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/p0/latch.rs.html#1974">source</a><a href="#associatedtype.Reader-243" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../p0/latch/struct.R.html" title="struct nrf52840_pac::p0::latch::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-OUT_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/p0/out.rs.html#1973-1975">source</a><a href="#impl-Readable-for-OUT_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::p0::out::<a class="struct" href="../p0/out/struct.OUT_SPEC.html" title="struct nrf52840_pac::p0::out::OUT_SPEC">OUT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../p0/out/struct.R.html" title="struct nrf52840_pac::p0::out::R">out::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-244" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/p0/out.rs.html#1974">source</a><a href="#associatedtype.Reader-244" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../p0/out/struct.R.html" title="struct nrf52840_pac::p0::out::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-OUTCLR_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/p0/outclr.rs.html#2197-2199">source</a><a href="#impl-Readable-for-OUTCLR_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../p0/outclr/struct.OUTCLR_SPEC.html" title="struct nrf52840_pac::p0::outclr::OUTCLR_SPEC">OUTCLR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../p0/outclr/struct.R.html" title="struct nrf52840_pac::p0::outclr::R">outclr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-245" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/p0/outclr.rs.html#2198">source</a><a href="#associatedtype.Reader-245" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../p0/outclr/struct.R.html" title="struct nrf52840_pac::p0::outclr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-OUTSET_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/p0/outset.rs.html#2197-2199">source</a><a href="#impl-Readable-for-OUTSET_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../p0/outset/struct.OUTSET_SPEC.html" title="struct nrf52840_pac::p0::outset::OUTSET_SPEC">OUTSET_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../p0/outset/struct.R.html" title="struct nrf52840_pac::p0::outset::R">outset::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-246" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/p0/outset.rs.html#2198">source</a><a href="#associatedtype.Reader-246" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../p0/outset/struct.R.html" title="struct nrf52840_pac::p0::outset::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-PIN_CNF_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/p0/pin_cnf.rs.html#464-466">source</a><a href="#impl-Readable-for-PIN_CNF_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../p0/pin_cnf/struct.PIN_CNF_SPEC.html" title="struct nrf52840_pac::p0::pin_cnf::PIN_CNF_SPEC">PIN_CNF_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../p0/pin_cnf/struct.R.html" title="struct nrf52840_pac::p0::pin_cnf::R">pin_cnf::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-247" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/p0/pin_cnf.rs.html#465">source</a><a href="#associatedtype.Reader-247" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../p0/pin_cnf/struct.R.html" title="struct nrf52840_pac::p0::pin_cnf::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ENABLE_SPEC-6" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/pdm/enable.rs.html#113-115">source</a><a href="#impl-Readable-for-ENABLE_SPEC-6" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::pdm::enable::<a class="struct" href="../pdm/enable/struct.ENABLE_SPEC.html" title="struct nrf52840_pac::pdm::enable::ENABLE_SPEC">ENABLE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../pdm/enable/struct.R.html" title="struct nrf52840_pac::pdm::enable::R">enable::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-248" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/pdm/enable.rs.html#114">source</a><a href="#associatedtype.Reader-248" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../pdm/enable/struct.R.html" title="struct nrf52840_pac::pdm::enable::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_END_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/pdm/events_end.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_END_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::pdm::events_end::<a class="struct" href="../pdm/events_end/struct.EVENTS_END_SPEC.html" title="struct nrf52840_pac::pdm::events_end::EVENTS_END_SPEC">EVENTS_END_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../pdm/events_end/struct.R.html" title="struct nrf52840_pac::pdm::events_end::R">events_end::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-249" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/pdm/events_end.rs.html#68">source</a><a href="#associatedtype.Reader-249" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../pdm/events_end/struct.R.html" title="struct nrf52840_pac::pdm::events_end::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_STARTED_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/pdm/events_started.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_STARTED_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::pdm::events_started::<a class="struct" href="../pdm/events_started/struct.EVENTS_STARTED_SPEC.html" title="struct nrf52840_pac::pdm::events_started::EVENTS_STARTED_SPEC">EVENTS_STARTED_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../pdm/events_started/struct.R.html" title="struct nrf52840_pac::pdm::events_started::R">events_started::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-250" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/pdm/events_started.rs.html#69">source</a><a href="#associatedtype.Reader-250" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../pdm/events_started/struct.R.html" title="struct nrf52840_pac::pdm::events_started::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_STOPPED_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/pdm/events_stopped.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_STOPPED_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::pdm::events_stopped::<a class="struct" href="../pdm/events_stopped/struct.EVENTS_STOPPED_SPEC.html" title="struct nrf52840_pac::pdm::events_stopped::EVENTS_STOPPED_SPEC">EVENTS_STOPPED_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../pdm/events_stopped/struct.R.html" title="struct nrf52840_pac::pdm::events_stopped::R">events_stopped::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-251" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/pdm/events_stopped.rs.html#69">source</a><a href="#associatedtype.Reader-251" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../pdm/events_stopped/struct.R.html" title="struct nrf52840_pac::pdm::events_stopped::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-GAINL_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/pdm/gainl.rs.html#128-130">source</a><a href="#impl-Readable-for-GAINL_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../pdm/gainl/struct.GAINL_SPEC.html" title="struct nrf52840_pac::pdm::gainl::GAINL_SPEC">GAINL_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../pdm/gainl/struct.R.html" title="struct nrf52840_pac::pdm::gainl::R">gainl::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-252" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/pdm/gainl.rs.html#129">source</a><a href="#associatedtype.Reader-252" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../pdm/gainl/struct.R.html" title="struct nrf52840_pac::pdm::gainl::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-GAINR_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/pdm/gainr.rs.html#128-130">source</a><a href="#impl-Readable-for-GAINR_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../pdm/gainr/struct.GAINR_SPEC.html" title="struct nrf52840_pac::pdm::gainr::GAINR_SPEC">GAINR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../pdm/gainr/struct.R.html" title="struct nrf52840_pac::pdm::gainr::R">gainr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-253" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/pdm/gainr.rs.html#129">source</a><a href="#associatedtype.Reader-253" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../pdm/gainr/struct.R.html" title="struct nrf52840_pac::pdm::gainr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTEN_SPEC-5" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/pdm/inten.rs.html#233-235">source</a><a href="#impl-Readable-for-INTEN_SPEC-5" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::pdm::inten::<a class="struct" href="../pdm/inten/struct.INTEN_SPEC.html" title="struct nrf52840_pac::pdm::inten::INTEN_SPEC">INTEN_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../pdm/inten/struct.R.html" title="struct nrf52840_pac::pdm::inten::R">inten::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-254" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/pdm/inten.rs.html#234">source</a><a href="#associatedtype.Reader-254" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../pdm/inten/struct.R.html" title="struct nrf52840_pac::pdm::inten::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENCLR_SPEC-11" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/pdm/intenclr.rs.html#254-256">source</a><a href="#impl-Readable-for-INTENCLR_SPEC-11" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::pdm::intenclr::<a class="struct" href="../pdm/intenclr/struct.INTENCLR_SPEC.html" title="struct nrf52840_pac::pdm::intenclr::INTENCLR_SPEC">INTENCLR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../pdm/intenclr/struct.R.html" title="struct nrf52840_pac::pdm::intenclr::R">intenclr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-255" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/pdm/intenclr.rs.html#255">source</a><a href="#associatedtype.Reader-255" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../pdm/intenclr/struct.R.html" title="struct nrf52840_pac::pdm::intenclr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENSET_SPEC-11" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/pdm/intenset.rs.html#254-256">source</a><a href="#impl-Readable-for-INTENSET_SPEC-11" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::pdm::intenset::<a class="struct" href="../pdm/intenset/struct.INTENSET_SPEC.html" title="struct nrf52840_pac::pdm::intenset::INTENSET_SPEC">INTENSET_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../pdm/intenset/struct.R.html" title="struct nrf52840_pac::pdm::intenset::R">intenset::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-256" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/pdm/intenset.rs.html#255">source</a><a href="#associatedtype.Reader-256" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../pdm/intenset/struct.R.html" title="struct nrf52840_pac::pdm::intenset::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-MODE_SPEC-3" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/pdm/mode.rs.html#173-175">source</a><a href="#impl-Readable-for-MODE_SPEC-3" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::pdm::mode::<a class="struct" href="../pdm/mode/struct.MODE_SPEC.html" title="struct nrf52840_pac::pdm::mode::MODE_SPEC">MODE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../pdm/mode/struct.R.html" title="struct nrf52840_pac::pdm::mode::R">mode::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-257" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/pdm/mode.rs.html#174">source</a><a href="#associatedtype.Reader-257" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../pdm/mode/struct.R.html" title="struct nrf52840_pac::pdm::mode::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-PDMCLKCTRL_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/pdm/pdmclkctrl.rs.html#167-169">source</a><a href="#impl-Readable-for-PDMCLKCTRL_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../pdm/pdmclkctrl/struct.PDMCLKCTRL_SPEC.html" title="struct nrf52840_pac::pdm::pdmclkctrl::PDMCLKCTRL_SPEC">PDMCLKCTRL_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../pdm/pdmclkctrl/struct.R.html" title="struct nrf52840_pac::pdm::pdmclkctrl::R">pdmclkctrl::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-258" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/pdm/pdmclkctrl.rs.html#168">source</a><a href="#associatedtype.Reader-258" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../pdm/pdmclkctrl/struct.R.html" title="struct nrf52840_pac::pdm::pdmclkctrl::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-CLK_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/pdm/psel/clk.rs.html#141-143">source</a><a href="#impl-Readable-for-CLK_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../pdm/psel/clk/struct.CLK_SPEC.html" title="struct nrf52840_pac::pdm::psel::clk::CLK_SPEC">CLK_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../pdm/psel/clk/struct.R.html" title="struct nrf52840_pac::pdm::psel::clk::R">clk::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-259" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/pdm/psel/clk.rs.html#142">source</a><a href="#associatedtype.Reader-259" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../pdm/psel/clk/struct.R.html" title="struct nrf52840_pac::pdm::psel::clk::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-DIN_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/pdm/psel/din.rs.html#141-143">source</a><a href="#impl-Readable-for-DIN_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../pdm/psel/din/struct.DIN_SPEC.html" title="struct nrf52840_pac::pdm::psel::din::DIN_SPEC">DIN_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../pdm/psel/din/struct.R.html" title="struct nrf52840_pac::pdm::psel::din::R">din::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-260" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/pdm/psel/din.rs.html#142">source</a><a href="#associatedtype.Reader-260" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../pdm/psel/din/struct.R.html" title="struct nrf52840_pac::pdm::psel::din::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-RATIO_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/pdm/ratio.rs.html#113-115">source</a><a href="#impl-Readable-for-RATIO_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::pdm::ratio::<a class="struct" href="../pdm/ratio/struct.RATIO_SPEC.html" title="struct nrf52840_pac::pdm::ratio::RATIO_SPEC">RATIO_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../pdm/ratio/struct.R.html" title="struct nrf52840_pac::pdm::ratio::R">ratio::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-261" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/pdm/ratio.rs.html#114">source</a><a href="#associatedtype.Reader-261" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../pdm/ratio/struct.R.html" title="struct nrf52840_pac::pdm::ratio::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-MAXCNT_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/pdm/sample/maxcnt.rs.html#67-69">source</a><a href="#impl-Readable-for-MAXCNT_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::pdm::sample::maxcnt::<a class="struct" href="../pdm/sample/maxcnt/struct.MAXCNT_SPEC.html" title="struct nrf52840_pac::pdm::sample::maxcnt::MAXCNT_SPEC">MAXCNT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../pdm/sample/maxcnt/struct.R.html" title="struct nrf52840_pac::pdm::sample::maxcnt::R">maxcnt::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-262" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/pdm/sample/maxcnt.rs.html#68">source</a><a href="#associatedtype.Reader-262" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../pdm/sample/maxcnt/struct.R.html" title="struct nrf52840_pac::pdm::sample::maxcnt::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-PTR_SPEC-2" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/pdm/sample/ptr.rs.html#67-69">source</a><a href="#impl-Readable-for-PTR_SPEC-2" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::pdm::sample::ptr::<a class="struct" href="../pdm/sample/ptr/struct.PTR_SPEC.html" title="struct nrf52840_pac::pdm::sample::ptr::PTR_SPEC">PTR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../pdm/sample/ptr/struct.R.html" title="struct nrf52840_pac::pdm::sample::ptr::R">ptr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-263" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/pdm/sample/ptr.rs.html#68">source</a><a href="#associatedtype.Reader-263" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../pdm/sample/ptr/struct.R.html" title="struct nrf52840_pac::pdm::sample::ptr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-DCDCEN0_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/power/dcdcen0.rs.html#113-115">source</a><a href="#impl-Readable-for-DCDCEN0_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../power/dcdcen0/struct.DCDCEN0_SPEC.html" title="struct nrf52840_pac::power::dcdcen0::DCDCEN0_SPEC">DCDCEN0_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../power/dcdcen0/struct.R.html" title="struct nrf52840_pac::power::dcdcen0::R">dcdcen0::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-264" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/power/dcdcen0.rs.html#114">source</a><a href="#associatedtype.Reader-264" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../power/dcdcen0/struct.R.html" title="struct nrf52840_pac::power::dcdcen0::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-DCDCEN_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/power/dcdcen.rs.html#113-115">source</a><a href="#impl-Readable-for-DCDCEN_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../power/dcdcen/struct.DCDCEN_SPEC.html" title="struct nrf52840_pac::power::dcdcen::DCDCEN_SPEC">DCDCEN_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../power/dcdcen/struct.R.html" title="struct nrf52840_pac::power::dcdcen::R">dcdcen::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-265" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/power/dcdcen.rs.html#114">source</a><a href="#associatedtype.Reader-265" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../power/dcdcen/struct.R.html" title="struct nrf52840_pac::power::dcdcen::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_POFWARN_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/power/events_pofwarn.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_POFWARN_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../power/events_pofwarn/struct.EVENTS_POFWARN_SPEC.html" title="struct nrf52840_pac::power::events_pofwarn::EVENTS_POFWARN_SPEC">EVENTS_POFWARN_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../power/events_pofwarn/struct.R.html" title="struct nrf52840_pac::power::events_pofwarn::R">events_pofwarn::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-266" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/power/events_pofwarn.rs.html#69">source</a><a href="#associatedtype.Reader-266" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../power/events_pofwarn/struct.R.html" title="struct nrf52840_pac::power::events_pofwarn::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_SLEEPENTER_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/power/events_sleepenter.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_SLEEPENTER_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../power/events_sleepenter/struct.EVENTS_SLEEPENTER_SPEC.html" title="struct nrf52840_pac::power::events_sleepenter::EVENTS_SLEEPENTER_SPEC">EVENTS_SLEEPENTER_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../power/events_sleepenter/struct.R.html" title="struct nrf52840_pac::power::events_sleepenter::R">events_sleepenter::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-267" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/power/events_sleepenter.rs.html#69">source</a><a href="#associatedtype.Reader-267" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../power/events_sleepenter/struct.R.html" title="struct nrf52840_pac::power::events_sleepenter::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_SLEEPEXIT_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/power/events_sleepexit.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_SLEEPEXIT_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../power/events_sleepexit/struct.EVENTS_SLEEPEXIT_SPEC.html" title="struct nrf52840_pac::power::events_sleepexit::EVENTS_SLEEPEXIT_SPEC">EVENTS_SLEEPEXIT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../power/events_sleepexit/struct.R.html" title="struct nrf52840_pac::power::events_sleepexit::R">events_sleepexit::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-268" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/power/events_sleepexit.rs.html#69">source</a><a href="#associatedtype.Reader-268" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../power/events_sleepexit/struct.R.html" title="struct nrf52840_pac::power::events_sleepexit::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_USBDETECTED_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/power/events_usbdetected.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_USBDETECTED_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../power/events_usbdetected/struct.EVENTS_USBDETECTED_SPEC.html" title="struct nrf52840_pac::power::events_usbdetected::EVENTS_USBDETECTED_SPEC">EVENTS_USBDETECTED_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../power/events_usbdetected/struct.R.html" title="struct nrf52840_pac::power::events_usbdetected::R">events_usbdetected::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-269" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/power/events_usbdetected.rs.html#69">source</a><a href="#associatedtype.Reader-269" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../power/events_usbdetected/struct.R.html" title="struct nrf52840_pac::power::events_usbdetected::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_USBPWRRDY_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/power/events_usbpwrrdy.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_USBPWRRDY_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../power/events_usbpwrrdy/struct.EVENTS_USBPWRRDY_SPEC.html" title="struct nrf52840_pac::power::events_usbpwrrdy::EVENTS_USBPWRRDY_SPEC">EVENTS_USBPWRRDY_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../power/events_usbpwrrdy/struct.R.html" title="struct nrf52840_pac::power::events_usbpwrrdy::R">events_usbpwrrdy::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-270" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/power/events_usbpwrrdy.rs.html#69">source</a><a href="#associatedtype.Reader-270" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../power/events_usbpwrrdy/struct.R.html" title="struct nrf52840_pac::power::events_usbpwrrdy::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_USBREMOVED_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/power/events_usbremoved.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_USBREMOVED_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../power/events_usbremoved/struct.EVENTS_USBREMOVED_SPEC.html" title="struct nrf52840_pac::power::events_usbremoved::EVENTS_USBREMOVED_SPEC">EVENTS_USBREMOVED_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../power/events_usbremoved/struct.R.html" title="struct nrf52840_pac::power::events_usbremoved::R">events_usbremoved::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-271" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/power/events_usbremoved.rs.html#69">source</a><a href="#associatedtype.Reader-271" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../power/events_usbremoved/struct.R.html" title="struct nrf52840_pac::power::events_usbremoved::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-GPREGRET2_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/power/gpregret2.rs.html#67-69">source</a><a href="#impl-Readable-for-GPREGRET2_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../power/gpregret2/struct.GPREGRET2_SPEC.html" title="struct nrf52840_pac::power::gpregret2::GPREGRET2_SPEC">GPREGRET2_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../power/gpregret2/struct.R.html" title="struct nrf52840_pac::power::gpregret2::R">gpregret2::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-272" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/power/gpregret2.rs.html#68">source</a><a href="#associatedtype.Reader-272" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../power/gpregret2/struct.R.html" title="struct nrf52840_pac::power::gpregret2::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-GPREGRET_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/power/gpregret.rs.html#67-69">source</a><a href="#impl-Readable-for-GPREGRET_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../power/gpregret/struct.GPREGRET_SPEC.html" title="struct nrf52840_pac::power::gpregret::GPREGRET_SPEC">GPREGRET_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../power/gpregret/struct.R.html" title="struct nrf52840_pac::power::gpregret::R">gpregret::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-273" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/power/gpregret.rs.html#68">source</a><a href="#associatedtype.Reader-273" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../power/gpregret/struct.R.html" title="struct nrf52840_pac::power::gpregret::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENCLR_SPEC-12" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/power/intenclr.rs.html#456-458">source</a><a href="#impl-Readable-for-INTENCLR_SPEC-12" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::power::intenclr::<a class="struct" href="../power/intenclr/struct.INTENCLR_SPEC.html" title="struct nrf52840_pac::power::intenclr::INTENCLR_SPEC">INTENCLR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../power/intenclr/struct.R.html" title="struct nrf52840_pac::power::intenclr::R">intenclr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-274" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/power/intenclr.rs.html#457">source</a><a href="#associatedtype.Reader-274" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../power/intenclr/struct.R.html" title="struct nrf52840_pac::power::intenclr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENSET_SPEC-12" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/power/intenset.rs.html#456-458">source</a><a href="#impl-Readable-for-INTENSET_SPEC-12" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::power::intenset::<a class="struct" href="../power/intenset/struct.INTENSET_SPEC.html" title="struct nrf52840_pac::power::intenset::INTENSET_SPEC">INTENSET_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../power/intenset/struct.R.html" title="struct nrf52840_pac::power::intenset::R">intenset::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-275" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/power/intenset.rs.html#457">source</a><a href="#associatedtype.Reader-275" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../power/intenset/struct.R.html" title="struct nrf52840_pac::power::intenset::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-MAINREGSTATUS_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/power/mainregstatus.rs.html#65-67">source</a><a href="#impl-Readable-for-MAINREGSTATUS_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../power/mainregstatus/struct.MAINREGSTATUS_SPEC.html" title="struct nrf52840_pac::power::mainregstatus::MAINREGSTATUS_SPEC">MAINREGSTATUS_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../power/mainregstatus/struct.R.html" title="struct nrf52840_pac::power::mainregstatus::R">mainregstatus::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-276" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/power/mainregstatus.rs.html#66">source</a><a href="#associatedtype.Reader-276" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../power/mainregstatus/struct.R.html" title="struct nrf52840_pac::power::mainregstatus::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-POFCON_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/power/pofcon.rs.html#551-553">source</a><a href="#impl-Readable-for-POFCON_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../power/pofcon/struct.POFCON_SPEC.html" title="struct nrf52840_pac::power::pofcon::POFCON_SPEC">POFCON_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../power/pofcon/struct.R.html" title="struct nrf52840_pac::power::pofcon::R">pofcon::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-277" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/power/pofcon.rs.html#552">source</a><a href="#associatedtype.Reader-277" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../power/pofcon/struct.R.html" title="struct nrf52840_pac::power::pofcon::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-POWER_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/power/ram/power.rs.html#1973-1975">source</a><a href="#impl-Readable-for-POWER_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::power::ram::power::<a class="struct" href="../power/ram/power/struct.POWER_SPEC.html" title="struct nrf52840_pac::power::ram::power::POWER_SPEC">POWER_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../power/ram/power/struct.R.html" title="struct nrf52840_pac::power::ram::power::R">power::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-278" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/power/ram/power.rs.html#1974">source</a><a href="#associatedtype.Reader-278" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../power/ram/power/struct.R.html" title="struct nrf52840_pac::power::ram::power::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-RAMSTATUS_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/power/ramstatus.rs.html#188-190">source</a><a href="#impl-Readable-for-RAMSTATUS_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../power/ramstatus/struct.RAMSTATUS_SPEC.html" title="struct nrf52840_pac::power::ramstatus::RAMSTATUS_SPEC">RAMSTATUS_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../power/ramstatus/struct.R.html" title="struct nrf52840_pac::power::ramstatus::R">ramstatus::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-279" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/power/ramstatus.rs.html#189">source</a><a href="#associatedtype.Reader-279" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../power/ramstatus/struct.R.html" title="struct nrf52840_pac::power::ramstatus::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-RESETREAS_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/power/resetreas.rs.html#593-595">source</a><a href="#impl-Readable-for-RESETREAS_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../power/resetreas/struct.RESETREAS_SPEC.html" title="struct nrf52840_pac::power::resetreas::RESETREAS_SPEC">RESETREAS_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../power/resetreas/struct.R.html" title="struct nrf52840_pac::power::resetreas::R">resetreas::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-280" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/power/resetreas.rs.html#594">source</a><a href="#associatedtype.Reader-280" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../power/resetreas/struct.R.html" title="struct nrf52840_pac::power::resetreas::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-USBREGSTATUS_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/power/usbregstatus.rs.html#106-108">source</a><a href="#impl-Readable-for-USBREGSTATUS_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../power/usbregstatus/struct.USBREGSTATUS_SPEC.html" title="struct nrf52840_pac::power::usbregstatus::USBREGSTATUS_SPEC">USBREGSTATUS_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../power/usbregstatus/struct.R.html" title="struct nrf52840_pac::power::usbregstatus::R">usbregstatus::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-281" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/power/usbregstatus.rs.html#107">source</a><a href="#associatedtype.Reader-281" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../power/usbregstatus/struct.R.html" title="struct nrf52840_pac::power::usbregstatus::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EEP_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ppi/ch/eep.rs.html#67-69">source</a><a href="#impl-Readable-for-EEP_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../ppi/ch/eep/struct.EEP_SPEC.html" title="struct nrf52840_pac::ppi::ch::eep::EEP_SPEC">EEP_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ppi/ch/eep/struct.R.html" title="struct nrf52840_pac::ppi::ch::eep::R">eep::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-282" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ppi/ch/eep.rs.html#68">source</a><a href="#associatedtype.Reader-282" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ppi/ch/eep/struct.R.html" title="struct nrf52840_pac::ppi::ch::eep::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-TEP_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ppi/ch/tep.rs.html#67-69">source</a><a href="#impl-Readable-for-TEP_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::ppi::ch::tep::<a class="struct" href="../ppi/ch/tep/struct.TEP_SPEC.html" title="struct nrf52840_pac::ppi::ch::tep::TEP_SPEC">TEP_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ppi/ch/tep/struct.R.html" title="struct nrf52840_pac::ppi::ch::tep::R">tep::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-283" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ppi/ch/tep.rs.html#68">source</a><a href="#associatedtype.Reader-283" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ppi/ch/tep/struct.R.html" title="struct nrf52840_pac::ppi::ch::tep::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-CHEN_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ppi/chen.rs.html#1973-1975">source</a><a href="#impl-Readable-for-CHEN_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../ppi/chen/struct.CHEN_SPEC.html" title="struct nrf52840_pac::ppi::chen::CHEN_SPEC">CHEN_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ppi/chen/struct.R.html" title="struct nrf52840_pac::ppi::chen::R">chen::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-284" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ppi/chen.rs.html#1974">source</a><a href="#associatedtype.Reader-284" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ppi/chen/struct.R.html" title="struct nrf52840_pac::ppi::chen::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-CHENCLR_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ppi/chenclr.rs.html#2197-2199">source</a><a href="#impl-Readable-for-CHENCLR_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../ppi/chenclr/struct.CHENCLR_SPEC.html" title="struct nrf52840_pac::ppi::chenclr::CHENCLR_SPEC">CHENCLR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ppi/chenclr/struct.R.html" title="struct nrf52840_pac::ppi::chenclr::R">chenclr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-285" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ppi/chenclr.rs.html#2198">source</a><a href="#associatedtype.Reader-285" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ppi/chenclr/struct.R.html" title="struct nrf52840_pac::ppi::chenclr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-CHENSET_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ppi/chenset.rs.html#2197-2199">source</a><a href="#impl-Readable-for-CHENSET_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../ppi/chenset/struct.CHENSET_SPEC.html" title="struct nrf52840_pac::ppi::chenset::CHENSET_SPEC">CHENSET_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ppi/chenset/struct.R.html" title="struct nrf52840_pac::ppi::chenset::R">chenset::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-286" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ppi/chenset.rs.html#2198">source</a><a href="#associatedtype.Reader-286" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ppi/chenset/struct.R.html" title="struct nrf52840_pac::ppi::chenset::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-CHG_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ppi/chg.rs.html#1973-1975">source</a><a href="#impl-Readable-for-CHG_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../ppi/chg/struct.CHG_SPEC.html" title="struct nrf52840_pac::ppi::chg::CHG_SPEC">CHG_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ppi/chg/struct.R.html" title="struct nrf52840_pac::ppi::chg::R">chg::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-287" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ppi/chg.rs.html#1974">source</a><a href="#associatedtype.Reader-287" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ppi/chg/struct.R.html" title="struct nrf52840_pac::ppi::chg::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-TEP_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/ppi/fork/tep.rs.html#67-69">source</a><a href="#impl-Readable-for-TEP_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::ppi::fork::tep::<a class="struct" href="../ppi/fork/tep/struct.TEP_SPEC.html" title="struct nrf52840_pac::ppi::fork::tep::TEP_SPEC">TEP_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../ppi/fork/tep/struct.R.html" title="struct nrf52840_pac::ppi::fork::tep::R">tep::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-288" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/ppi/fork/tep.rs.html#68">source</a><a href="#associatedtype.Reader-288" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../ppi/fork/tep/struct.R.html" title="struct nrf52840_pac::ppi::fork::tep::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-COUNTERTOP_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/pwm0/countertop.rs.html#68-70">source</a><a href="#impl-Readable-for-COUNTERTOP_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../pwm0/countertop/struct.COUNTERTOP_SPEC.html" title="struct nrf52840_pac::pwm0::countertop::COUNTERTOP_SPEC">COUNTERTOP_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../pwm0/countertop/struct.R.html" title="struct nrf52840_pac::pwm0::countertop::R">countertop::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-289" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/pwm0/countertop.rs.html#69">source</a><a href="#associatedtype.Reader-289" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../pwm0/countertop/struct.R.html" title="struct nrf52840_pac::pwm0::countertop::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-DECODER_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/pwm0/decoder.rs.html#201-203">source</a><a href="#impl-Readable-for-DECODER_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../pwm0/decoder/struct.DECODER_SPEC.html" title="struct nrf52840_pac::pwm0::decoder::DECODER_SPEC">DECODER_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../pwm0/decoder/struct.R.html" title="struct nrf52840_pac::pwm0::decoder::R">decoder::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-290" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/pwm0/decoder.rs.html#202">source</a><a href="#associatedtype.Reader-290" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../pwm0/decoder/struct.R.html" title="struct nrf52840_pac::pwm0::decoder::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ENABLE_SPEC-7" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/pwm0/enable.rs.html#113-115">source</a><a href="#impl-Readable-for-ENABLE_SPEC-7" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::pwm0::enable::<a class="struct" href="../pwm0/enable/struct.ENABLE_SPEC.html" title="struct nrf52840_pac::pwm0::enable::ENABLE_SPEC">ENABLE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../pwm0/enable/struct.R.html" title="struct nrf52840_pac::pwm0::enable::R">enable::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-291" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/pwm0/enable.rs.html#114">source</a><a href="#associatedtype.Reader-291" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../pwm0/enable/struct.R.html" title="struct nrf52840_pac::pwm0::enable::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_LOOPSDONE_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/pwm0/events_loopsdone.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_LOOPSDONE_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../pwm0/events_loopsdone/struct.EVENTS_LOOPSDONE_SPEC.html" title="struct nrf52840_pac::pwm0::events_loopsdone::EVENTS_LOOPSDONE_SPEC">EVENTS_LOOPSDONE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../pwm0/events_loopsdone/struct.R.html" title="struct nrf52840_pac::pwm0::events_loopsdone::R">events_loopsdone::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-292" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/pwm0/events_loopsdone.rs.html#69">source</a><a href="#associatedtype.Reader-292" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../pwm0/events_loopsdone/struct.R.html" title="struct nrf52840_pac::pwm0::events_loopsdone::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_PWMPERIODEND_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/pwm0/events_pwmperiodend.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_PWMPERIODEND_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../pwm0/events_pwmperiodend/struct.EVENTS_PWMPERIODEND_SPEC.html" title="struct nrf52840_pac::pwm0::events_pwmperiodend::EVENTS_PWMPERIODEND_SPEC">EVENTS_PWMPERIODEND_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../pwm0/events_pwmperiodend/struct.R.html" title="struct nrf52840_pac::pwm0::events_pwmperiodend::R">events_pwmperiodend::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-293" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/pwm0/events_pwmperiodend.rs.html#69">source</a><a href="#associatedtype.Reader-293" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../pwm0/events_pwmperiodend/struct.R.html" title="struct nrf52840_pac::pwm0::events_pwmperiodend::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_SEQEND_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/pwm0/events_seqend.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_SEQEND_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../pwm0/events_seqend/struct.EVENTS_SEQEND_SPEC.html" title="struct nrf52840_pac::pwm0::events_seqend::EVENTS_SEQEND_SPEC">EVENTS_SEQEND_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../pwm0/events_seqend/struct.R.html" title="struct nrf52840_pac::pwm0::events_seqend::R">events_seqend::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-294" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/pwm0/events_seqend.rs.html#68">source</a><a href="#associatedtype.Reader-294" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../pwm0/events_seqend/struct.R.html" title="struct nrf52840_pac::pwm0::events_seqend::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_SEQSTARTED_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/pwm0/events_seqstarted.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_SEQSTARTED_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../pwm0/events_seqstarted/struct.EVENTS_SEQSTARTED_SPEC.html" title="struct nrf52840_pac::pwm0::events_seqstarted::EVENTS_SEQSTARTED_SPEC">EVENTS_SEQSTARTED_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../pwm0/events_seqstarted/struct.R.html" title="struct nrf52840_pac::pwm0::events_seqstarted::R">events_seqstarted::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-295" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/pwm0/events_seqstarted.rs.html#69">source</a><a href="#associatedtype.Reader-295" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../pwm0/events_seqstarted/struct.R.html" title="struct nrf52840_pac::pwm0::events_seqstarted::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_STOPPED_SPEC-2" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/pwm0/events_stopped.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_STOPPED_SPEC-2" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::pwm0::events_stopped::<a class="struct" href="../pwm0/events_stopped/struct.EVENTS_STOPPED_SPEC.html" title="struct nrf52840_pac::pwm0::events_stopped::EVENTS_STOPPED_SPEC">EVENTS_STOPPED_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../pwm0/events_stopped/struct.R.html" title="struct nrf52840_pac::pwm0::events_stopped::R">events_stopped::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-296" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/pwm0/events_stopped.rs.html#69">source</a><a href="#associatedtype.Reader-296" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../pwm0/events_stopped/struct.R.html" title="struct nrf52840_pac::pwm0::events_stopped::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTEN_SPEC-6" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/pwm0/inten.rs.html#493-495">source</a><a href="#impl-Readable-for-INTEN_SPEC-6" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::pwm0::inten::<a class="struct" href="../pwm0/inten/struct.INTEN_SPEC.html" title="struct nrf52840_pac::pwm0::inten::INTEN_SPEC">INTEN_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../pwm0/inten/struct.R.html" title="struct nrf52840_pac::pwm0::inten::R">inten::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-297" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/pwm0/inten.rs.html#494">source</a><a href="#associatedtype.Reader-297" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../pwm0/inten/struct.R.html" title="struct nrf52840_pac::pwm0::inten::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENCLR_SPEC-13" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/pwm0/intenclr.rs.html#549-551">source</a><a href="#impl-Readable-for-INTENCLR_SPEC-13" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::pwm0::intenclr::<a class="struct" href="../pwm0/intenclr/struct.INTENCLR_SPEC.html" title="struct nrf52840_pac::pwm0::intenclr::INTENCLR_SPEC">INTENCLR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../pwm0/intenclr/struct.R.html" title="struct nrf52840_pac::pwm0::intenclr::R">intenclr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-298" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/pwm0/intenclr.rs.html#550">source</a><a href="#associatedtype.Reader-298" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../pwm0/intenclr/struct.R.html" title="struct nrf52840_pac::pwm0::intenclr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENSET_SPEC-13" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/pwm0/intenset.rs.html#549-551">source</a><a href="#impl-Readable-for-INTENSET_SPEC-13" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::pwm0::intenset::<a class="struct" href="../pwm0/intenset/struct.INTENSET_SPEC.html" title="struct nrf52840_pac::pwm0::intenset::INTENSET_SPEC">INTENSET_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../pwm0/intenset/struct.R.html" title="struct nrf52840_pac::pwm0::intenset::R">intenset::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-299" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/pwm0/intenset.rs.html#550">source</a><a href="#associatedtype.Reader-299" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../pwm0/intenset/struct.R.html" title="struct nrf52840_pac::pwm0::intenset::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-LOOP_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/pwm0/loop_.rs.html#102-104">source</a><a href="#impl-Readable-for-LOOP_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../pwm0/loop_/struct.LOOP_SPEC.html" title="struct nrf52840_pac::pwm0::loop_::LOOP_SPEC">LOOP_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../pwm0/loop_/struct.R.html" title="struct nrf52840_pac::pwm0::loop_::R">loop_::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-300" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/pwm0/loop_.rs.html#103">source</a><a href="#associatedtype.Reader-300" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../pwm0/loop_/struct.R.html" title="struct nrf52840_pac::pwm0::loop_::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-MODE_SPEC-4" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/pwm0/mode.rs.html#113-115">source</a><a href="#impl-Readable-for-MODE_SPEC-4" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::pwm0::mode::<a class="struct" href="../pwm0/mode/struct.MODE_SPEC.html" title="struct nrf52840_pac::pwm0::mode::MODE_SPEC">MODE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../pwm0/mode/struct.R.html" title="struct nrf52840_pac::pwm0::mode::R">mode::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-301" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/pwm0/mode.rs.html#114">source</a><a href="#associatedtype.Reader-301" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../pwm0/mode/struct.R.html" title="struct nrf52840_pac::pwm0::mode::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-PRESCALER_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/pwm0/prescaler.rs.html#194-196">source</a><a href="#impl-Readable-for-PRESCALER_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::pwm0::prescaler::<a class="struct" href="../pwm0/prescaler/struct.PRESCALER_SPEC.html" title="struct nrf52840_pac::pwm0::prescaler::PRESCALER_SPEC">PRESCALER_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../pwm0/prescaler/struct.R.html" title="struct nrf52840_pac::pwm0::prescaler::R">prescaler::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-302" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/pwm0/prescaler.rs.html#195">source</a><a href="#associatedtype.Reader-302" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../pwm0/prescaler/struct.R.html" title="struct nrf52840_pac::pwm0::prescaler::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-OUT_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/pwm0/psel/out.rs.html#141-143">source</a><a href="#impl-Readable-for-OUT_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::pwm0::psel::out::<a class="struct" href="../pwm0/psel/out/struct.OUT_SPEC.html" title="struct nrf52840_pac::pwm0::psel::out::OUT_SPEC">OUT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../pwm0/psel/out/struct.R.html" title="struct nrf52840_pac::pwm0::psel::out::R">out::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-303" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/pwm0/psel/out.rs.html#142">source</a><a href="#associatedtype.Reader-303" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../pwm0/psel/out/struct.R.html" title="struct nrf52840_pac::pwm0::psel::out::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-CNT_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/pwm0/seq/cnt.rs.html#102-104">source</a><a href="#impl-Readable-for-CNT_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::pwm0::seq::cnt::<a class="struct" href="../pwm0/seq/cnt/struct.CNT_SPEC.html" title="struct nrf52840_pac::pwm0::seq::cnt::CNT_SPEC">CNT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../pwm0/seq/cnt/struct.R.html" title="struct nrf52840_pac::pwm0::seq::cnt::R">cnt::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-304" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/pwm0/seq/cnt.rs.html#103">source</a><a href="#associatedtype.Reader-304" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../pwm0/seq/cnt/struct.R.html" title="struct nrf52840_pac::pwm0::seq::cnt::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ENDDELAY_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/pwm0/seq/enddelay.rs.html#67-69">source</a><a href="#impl-Readable-for-ENDDELAY_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../pwm0/seq/enddelay/struct.ENDDELAY_SPEC.html" title="struct nrf52840_pac::pwm0::seq::enddelay::ENDDELAY_SPEC">ENDDELAY_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../pwm0/seq/enddelay/struct.R.html" title="struct nrf52840_pac::pwm0::seq::enddelay::R">enddelay::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-305" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/pwm0/seq/enddelay.rs.html#68">source</a><a href="#associatedtype.Reader-305" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../pwm0/seq/enddelay/struct.R.html" title="struct nrf52840_pac::pwm0::seq::enddelay::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-PTR_SPEC-3" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/pwm0/seq/ptr.rs.html#67-69">source</a><a href="#impl-Readable-for-PTR_SPEC-3" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::pwm0::seq::ptr::<a class="struct" href="../pwm0/seq/ptr/struct.PTR_SPEC.html" title="struct nrf52840_pac::pwm0::seq::ptr::PTR_SPEC">PTR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../pwm0/seq/ptr/struct.R.html" title="struct nrf52840_pac::pwm0::seq::ptr::R">ptr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-306" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/pwm0/seq/ptr.rs.html#68">source</a><a href="#associatedtype.Reader-306" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../pwm0/seq/ptr/struct.R.html" title="struct nrf52840_pac::pwm0::seq::ptr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-REFRESH_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/pwm0/seq/refresh.rs.html#102-104">source</a><a href="#impl-Readable-for-REFRESH_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../pwm0/seq/refresh/struct.REFRESH_SPEC.html" title="struct nrf52840_pac::pwm0::seq::refresh::REFRESH_SPEC">REFRESH_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../pwm0/seq/refresh/struct.R.html" title="struct nrf52840_pac::pwm0::seq::refresh::R">refresh::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-307" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/pwm0/seq/refresh.rs.html#103">source</a><a href="#associatedtype.Reader-307" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../pwm0/seq/refresh/struct.R.html" title="struct nrf52840_pac::pwm0::seq::refresh::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-SHORTS_SPEC-4" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/pwm0/shorts.rs.html#378-380">source</a><a href="#impl-Readable-for-SHORTS_SPEC-4" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::pwm0::shorts::<a class="struct" href="../pwm0/shorts/struct.SHORTS_SPEC.html" title="struct nrf52840_pac::pwm0::shorts::SHORTS_SPEC">SHORTS_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../pwm0/shorts/struct.R.html" title="struct nrf52840_pac::pwm0::shorts::R">shorts::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-308" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/pwm0/shorts.rs.html#379">source</a><a href="#associatedtype.Reader-308" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../pwm0/shorts/struct.R.html" title="struct nrf52840_pac::pwm0::shorts::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ACC_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/qdec/acc.rs.html#31-33">source</a><a href="#impl-Readable-for-ACC_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../qdec/acc/struct.ACC_SPEC.html" title="struct nrf52840_pac::qdec::acc::ACC_SPEC">ACC_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../qdec/acc/struct.R.html" title="struct nrf52840_pac::qdec::acc::R">acc::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-309" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/qdec/acc.rs.html#32">source</a><a href="#associatedtype.Reader-309" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../qdec/acc/struct.R.html" title="struct nrf52840_pac::qdec::acc::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ACCDBL_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/qdec/accdbl.rs.html#31-33">source</a><a href="#impl-Readable-for-ACCDBL_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../qdec/accdbl/struct.ACCDBL_SPEC.html" title="struct nrf52840_pac::qdec::accdbl::ACCDBL_SPEC">ACCDBL_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../qdec/accdbl/struct.R.html" title="struct nrf52840_pac::qdec::accdbl::R">accdbl::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-310" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/qdec/accdbl.rs.html#32">source</a><a href="#associatedtype.Reader-310" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../qdec/accdbl/struct.R.html" title="struct nrf52840_pac::qdec::accdbl::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ACCDBLREAD_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/qdec/accdblread.rs.html#31-33">source</a><a href="#impl-Readable-for-ACCDBLREAD_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../qdec/accdblread/struct.ACCDBLREAD_SPEC.html" title="struct nrf52840_pac::qdec::accdblread::ACCDBLREAD_SPEC">ACCDBLREAD_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../qdec/accdblread/struct.R.html" title="struct nrf52840_pac::qdec::accdblread::R">accdblread::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-311" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/qdec/accdblread.rs.html#32">source</a><a href="#associatedtype.Reader-311" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../qdec/accdblread/struct.R.html" title="struct nrf52840_pac::qdec::accdblread::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ACCREAD_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/qdec/accread.rs.html#31-33">source</a><a href="#impl-Readable-for-ACCREAD_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../qdec/accread/struct.ACCREAD_SPEC.html" title="struct nrf52840_pac::qdec::accread::ACCREAD_SPEC">ACCREAD_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../qdec/accread/struct.R.html" title="struct nrf52840_pac::qdec::accread::R">accread::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-312" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/qdec/accread.rs.html#32">source</a><a href="#associatedtype.Reader-312" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../qdec/accread/struct.R.html" title="struct nrf52840_pac::qdec::accread::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-DBFEN_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/qdec/dbfen.rs.html#113-115">source</a><a href="#impl-Readable-for-DBFEN_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../qdec/dbfen/struct.DBFEN_SPEC.html" title="struct nrf52840_pac::qdec::dbfen::DBFEN_SPEC">DBFEN_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../qdec/dbfen/struct.R.html" title="struct nrf52840_pac::qdec::dbfen::R">dbfen::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-313" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/qdec/dbfen.rs.html#114">source</a><a href="#associatedtype.Reader-313" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../qdec/dbfen/struct.R.html" title="struct nrf52840_pac::qdec::dbfen::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ENABLE_SPEC-8" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/qdec/enable.rs.html#113-115">source</a><a href="#impl-Readable-for-ENABLE_SPEC-8" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::qdec::enable::<a class="struct" href="../qdec/enable/struct.ENABLE_SPEC.html" title="struct nrf52840_pac::qdec::enable::ENABLE_SPEC">ENABLE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../qdec/enable/struct.R.html" title="struct nrf52840_pac::qdec::enable::R">enable::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-314" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/qdec/enable.rs.html#114">source</a><a href="#associatedtype.Reader-314" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../qdec/enable/struct.R.html" title="struct nrf52840_pac::qdec::enable::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_ACCOF_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/qdec/events_accof.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_ACCOF_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../qdec/events_accof/struct.EVENTS_ACCOF_SPEC.html" title="struct nrf52840_pac::qdec::events_accof::EVENTS_ACCOF_SPEC">EVENTS_ACCOF_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../qdec/events_accof/struct.R.html" title="struct nrf52840_pac::qdec::events_accof::R">events_accof::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-315" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/qdec/events_accof.rs.html#68">source</a><a href="#associatedtype.Reader-315" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../qdec/events_accof/struct.R.html" title="struct nrf52840_pac::qdec::events_accof::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_DBLRDY_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/qdec/events_dblrdy.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_DBLRDY_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../qdec/events_dblrdy/struct.EVENTS_DBLRDY_SPEC.html" title="struct nrf52840_pac::qdec::events_dblrdy::EVENTS_DBLRDY_SPEC">EVENTS_DBLRDY_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../qdec/events_dblrdy/struct.R.html" title="struct nrf52840_pac::qdec::events_dblrdy::R">events_dblrdy::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-316" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/qdec/events_dblrdy.rs.html#68">source</a><a href="#associatedtype.Reader-316" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../qdec/events_dblrdy/struct.R.html" title="struct nrf52840_pac::qdec::events_dblrdy::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_REPORTRDY_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/qdec/events_reportrdy.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_REPORTRDY_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../qdec/events_reportrdy/struct.EVENTS_REPORTRDY_SPEC.html" title="struct nrf52840_pac::qdec::events_reportrdy::EVENTS_REPORTRDY_SPEC">EVENTS_REPORTRDY_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../qdec/events_reportrdy/struct.R.html" title="struct nrf52840_pac::qdec::events_reportrdy::R">events_reportrdy::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-317" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/qdec/events_reportrdy.rs.html#69">source</a><a href="#associatedtype.Reader-317" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../qdec/events_reportrdy/struct.R.html" title="struct nrf52840_pac::qdec::events_reportrdy::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_SAMPLERDY_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/qdec/events_samplerdy.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_SAMPLERDY_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../qdec/events_samplerdy/struct.EVENTS_SAMPLERDY_SPEC.html" title="struct nrf52840_pac::qdec::events_samplerdy::EVENTS_SAMPLERDY_SPEC">EVENTS_SAMPLERDY_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../qdec/events_samplerdy/struct.R.html" title="struct nrf52840_pac::qdec::events_samplerdy::R">events_samplerdy::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-318" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/qdec/events_samplerdy.rs.html#69">source</a><a href="#associatedtype.Reader-318" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../qdec/events_samplerdy/struct.R.html" title="struct nrf52840_pac::qdec::events_samplerdy::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_STOPPED_SPEC-3" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/qdec/events_stopped.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_STOPPED_SPEC-3" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::qdec::events_stopped::<a class="struct" href="../qdec/events_stopped/struct.EVENTS_STOPPED_SPEC.html" title="struct nrf52840_pac::qdec::events_stopped::EVENTS_STOPPED_SPEC">EVENTS_STOPPED_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../qdec/events_stopped/struct.R.html" title="struct nrf52840_pac::qdec::events_stopped::R">events_stopped::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-319" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/qdec/events_stopped.rs.html#69">source</a><a href="#associatedtype.Reader-319" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../qdec/events_stopped/struct.R.html" title="struct nrf52840_pac::qdec::events_stopped::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENCLR_SPEC-14" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/qdec/intenclr.rs.html#388-390">source</a><a href="#impl-Readable-for-INTENCLR_SPEC-14" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::qdec::intenclr::<a class="struct" href="../qdec/intenclr/struct.INTENCLR_SPEC.html" title="struct nrf52840_pac::qdec::intenclr::INTENCLR_SPEC">INTENCLR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../qdec/intenclr/struct.R.html" title="struct nrf52840_pac::qdec::intenclr::R">intenclr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-320" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/qdec/intenclr.rs.html#389">source</a><a href="#associatedtype.Reader-320" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../qdec/intenclr/struct.R.html" title="struct nrf52840_pac::qdec::intenclr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENSET_SPEC-14" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/qdec/intenset.rs.html#388-390">source</a><a href="#impl-Readable-for-INTENSET_SPEC-14" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::qdec::intenset::<a class="struct" href="../qdec/intenset/struct.INTENSET_SPEC.html" title="struct nrf52840_pac::qdec::intenset::INTENSET_SPEC">INTENSET_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../qdec/intenset/struct.R.html" title="struct nrf52840_pac::qdec::intenset::R">intenset::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-321" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/qdec/intenset.rs.html#389">source</a><a href="#associatedtype.Reader-321" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../qdec/intenset/struct.R.html" title="struct nrf52840_pac::qdec::intenset::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-LEDPOL_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/qdec/ledpol.rs.html#113-115">source</a><a href="#impl-Readable-for-LEDPOL_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../qdec/ledpol/struct.LEDPOL_SPEC.html" title="struct nrf52840_pac::qdec::ledpol::LEDPOL_SPEC">LEDPOL_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../qdec/ledpol/struct.R.html" title="struct nrf52840_pac::qdec::ledpol::R">ledpol::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-322" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/qdec/ledpol.rs.html#114">source</a><a href="#associatedtype.Reader-322" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../qdec/ledpol/struct.R.html" title="struct nrf52840_pac::qdec::ledpol::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-LEDPRE_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/qdec/ledpre.rs.html#67-69">source</a><a href="#impl-Readable-for-LEDPRE_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../qdec/ledpre/struct.LEDPRE_SPEC.html" title="struct nrf52840_pac::qdec::ledpre::LEDPRE_SPEC">LEDPRE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../qdec/ledpre/struct.R.html" title="struct nrf52840_pac::qdec::ledpre::R">ledpre::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-323" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/qdec/ledpre.rs.html#68">source</a><a href="#associatedtype.Reader-323" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../qdec/ledpre/struct.R.html" title="struct nrf52840_pac::qdec::ledpre::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-A_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/qdec/psel/a.rs.html#141-143">source</a><a href="#impl-Readable-for-A_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../qdec/psel/a/struct.A_SPEC.html" title="struct nrf52840_pac::qdec::psel::a::A_SPEC">A_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../qdec/psel/a/struct.R.html" title="struct nrf52840_pac::qdec::psel::a::R">a::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-324" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/qdec/psel/a.rs.html#142">source</a><a href="#associatedtype.Reader-324" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../qdec/psel/a/struct.R.html" title="struct nrf52840_pac::qdec::psel::a::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-B_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/qdec/psel/b.rs.html#141-143">source</a><a href="#impl-Readable-for-B_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../qdec/psel/b/struct.B_SPEC.html" title="struct nrf52840_pac::qdec::psel::b::B_SPEC">B_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../qdec/psel/b/struct.R.html" title="struct nrf52840_pac::qdec::psel::b::R">b::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-325" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/qdec/psel/b.rs.html#142">source</a><a href="#associatedtype.Reader-325" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../qdec/psel/b/struct.R.html" title="struct nrf52840_pac::qdec::psel::b::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-LED_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/qdec/psel/led.rs.html#141-143">source</a><a href="#impl-Readable-for-LED_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../qdec/psel/led/struct.LED_SPEC.html" title="struct nrf52840_pac::qdec::psel::led::LED_SPEC">LED_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../qdec/psel/led/struct.R.html" title="struct nrf52840_pac::qdec::psel::led::R">led::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-326" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/qdec/psel/led.rs.html#142">source</a><a href="#associatedtype.Reader-326" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../qdec/psel/led/struct.R.html" title="struct nrf52840_pac::qdec::psel::led::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-REPORTPER_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/qdec/reportper.rs.html#207-209">source</a><a href="#impl-Readable-for-REPORTPER_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../qdec/reportper/struct.REPORTPER_SPEC.html" title="struct nrf52840_pac::qdec::reportper::REPORTPER_SPEC">REPORTPER_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../qdec/reportper/struct.R.html" title="struct nrf52840_pac::qdec::reportper::R">reportper::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-327" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/qdec/reportper.rs.html#208">source</a><a href="#associatedtype.Reader-327" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../qdec/reportper/struct.R.html" title="struct nrf52840_pac::qdec::reportper::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-SAMPLE_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/qdec/sample.rs.html#31-33">source</a><a href="#impl-Readable-for-SAMPLE_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../qdec/sample/struct.SAMPLE_SPEC.html" title="struct nrf52840_pac::qdec::sample::SAMPLE_SPEC">SAMPLE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../qdec/sample/struct.R.html" title="struct nrf52840_pac::qdec::sample::R">sample::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-328" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/qdec/sample.rs.html#32">source</a><a href="#associatedtype.Reader-328" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../qdec/sample/struct.R.html" title="struct nrf52840_pac::qdec::sample::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-SAMPLEPER_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/qdec/sampleper.rs.html#233-235">source</a><a href="#impl-Readable-for-SAMPLEPER_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../qdec/sampleper/struct.SAMPLEPER_SPEC.html" title="struct nrf52840_pac::qdec::sampleper::SAMPLEPER_SPEC">SAMPLEPER_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../qdec/sampleper/struct.R.html" title="struct nrf52840_pac::qdec::sampleper::R">sampleper::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-329" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/qdec/sampleper.rs.html#234">source</a><a href="#associatedtype.Reader-329" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../qdec/sampleper/struct.R.html" title="struct nrf52840_pac::qdec::sampleper::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-SHORTS_SPEC-5" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/qdec/shorts.rs.html#479-481">source</a><a href="#impl-Readable-for-SHORTS_SPEC-5" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::qdec::shorts::<a class="struct" href="../qdec/shorts/struct.SHORTS_SPEC.html" title="struct nrf52840_pac::qdec::shorts::SHORTS_SPEC">SHORTS_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../qdec/shorts/struct.R.html" title="struct nrf52840_pac::qdec::shorts::R">shorts::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-330" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/qdec/shorts.rs.html#480">source</a><a href="#associatedtype.Reader-330" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../qdec/shorts/struct.R.html" title="struct nrf52840_pac::qdec::shorts::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ADDRCONF_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/addrconf.rs.html#303-305">source</a><a href="#impl-Readable-for-ADDRCONF_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../qspi/addrconf/struct.ADDRCONF_SPEC.html" title="struct nrf52840_pac::qspi::addrconf::ADDRCONF_SPEC">ADDRCONF_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../qspi/addrconf/struct.R.html" title="struct nrf52840_pac::qspi::addrconf::R">addrconf::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-331" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/addrconf.rs.html#304">source</a><a href="#associatedtype.Reader-331" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../qspi/addrconf/struct.R.html" title="struct nrf52840_pac::qspi::addrconf::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-CINSTRCONF_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/cinstrconf.rs.html#477-479">source</a><a href="#impl-Readable-for-CINSTRCONF_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../qspi/cinstrconf/struct.CINSTRCONF_SPEC.html" title="struct nrf52840_pac::qspi::cinstrconf::CINSTRCONF_SPEC">CINSTRCONF_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../qspi/cinstrconf/struct.R.html" title="struct nrf52840_pac::qspi::cinstrconf::R">cinstrconf::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-332" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/cinstrconf.rs.html#478">source</a><a href="#associatedtype.Reader-332" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../qspi/cinstrconf/struct.R.html" title="struct nrf52840_pac::qspi::cinstrconf::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-CINSTRDAT0_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/cinstrdat0.rs.html#109-111">source</a><a href="#impl-Readable-for-CINSTRDAT0_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../qspi/cinstrdat0/struct.CINSTRDAT0_SPEC.html" title="struct nrf52840_pac::qspi::cinstrdat0::CINSTRDAT0_SPEC">CINSTRDAT0_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../qspi/cinstrdat0/struct.R.html" title="struct nrf52840_pac::qspi::cinstrdat0::R">cinstrdat0::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-333" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/cinstrdat0.rs.html#110">source</a><a href="#associatedtype.Reader-333" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../qspi/cinstrdat0/struct.R.html" title="struct nrf52840_pac::qspi::cinstrdat0::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-CINSTRDAT1_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/cinstrdat1.rs.html#109-111">source</a><a href="#impl-Readable-for-CINSTRDAT1_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../qspi/cinstrdat1/struct.CINSTRDAT1_SPEC.html" title="struct nrf52840_pac::qspi::cinstrdat1::CINSTRDAT1_SPEC">CINSTRDAT1_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../qspi/cinstrdat1/struct.R.html" title="struct nrf52840_pac::qspi::cinstrdat1::R">cinstrdat1::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-334" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/cinstrdat1.rs.html#110">source</a><a href="#associatedtype.Reader-334" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../qspi/cinstrdat1/struct.R.html" title="struct nrf52840_pac::qspi::cinstrdat1::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-DPMDUR_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/dpmdur.rs.html#81-83">source</a><a href="#impl-Readable-for-DPMDUR_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../qspi/dpmdur/struct.DPMDUR_SPEC.html" title="struct nrf52840_pac::qspi::dpmdur::DPMDUR_SPEC">DPMDUR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../qspi/dpmdur/struct.R.html" title="struct nrf52840_pac::qspi::dpmdur::R">dpmdur::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-335" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/dpmdur.rs.html#82">source</a><a href="#associatedtype.Reader-335" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../qspi/dpmdur/struct.R.html" title="struct nrf52840_pac::qspi::dpmdur::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ENABLE_SPEC-9" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/enable.rs.html#113-115">source</a><a href="#impl-Readable-for-ENABLE_SPEC-9" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::qspi::enable::<a class="struct" href="../qspi/enable/struct.ENABLE_SPEC.html" title="struct nrf52840_pac::qspi::enable::ENABLE_SPEC">ENABLE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../qspi/enable/struct.R.html" title="struct nrf52840_pac::qspi::enable::R">enable::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-336" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/enable.rs.html#114">source</a><a href="#associatedtype.Reader-336" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../qspi/enable/struct.R.html" title="struct nrf52840_pac::qspi::enable::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-LEN_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/erase/len.rs.html#128-130">source</a><a href="#impl-Readable-for-LEN_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../qspi/erase/len/struct.LEN_SPEC.html" title="struct nrf52840_pac::qspi::erase::len::LEN_SPEC">LEN_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../qspi/erase/len/struct.R.html" title="struct nrf52840_pac::qspi::erase::len::R">len::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-337" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/erase/len.rs.html#129">source</a><a href="#associatedtype.Reader-337" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../qspi/erase/len/struct.R.html" title="struct nrf52840_pac::qspi::erase::len::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-PTR_SPEC-4" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/erase/ptr.rs.html#67-69">source</a><a href="#impl-Readable-for-PTR_SPEC-4" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::qspi::erase::ptr::<a class="struct" href="../qspi/erase/ptr/struct.PTR_SPEC.html" title="struct nrf52840_pac::qspi::erase::ptr::PTR_SPEC">PTR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../qspi/erase/ptr/struct.R.html" title="struct nrf52840_pac::qspi::erase::ptr::R">ptr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-338" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/erase/ptr.rs.html#68">source</a><a href="#associatedtype.Reader-338" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../qspi/erase/ptr/struct.R.html" title="struct nrf52840_pac::qspi::erase::ptr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_READY_SPEC-3" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/events_ready.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_READY_SPEC-3" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::qspi::events_ready::<a class="struct" href="../qspi/events_ready/struct.EVENTS_READY_SPEC.html" title="struct nrf52840_pac::qspi::events_ready::EVENTS_READY_SPEC">EVENTS_READY_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../qspi/events_ready/struct.R.html" title="struct nrf52840_pac::qspi::events_ready::R">events_ready::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-339" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/events_ready.rs.html#68">source</a><a href="#associatedtype.Reader-339" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../qspi/events_ready/struct.R.html" title="struct nrf52840_pac::qspi::events_ready::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-IFCONFIG0_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/ifconfig0.rs.html#424-426">source</a><a href="#impl-Readable-for-IFCONFIG0_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../qspi/ifconfig0/struct.IFCONFIG0_SPEC.html" title="struct nrf52840_pac::qspi::ifconfig0::IFCONFIG0_SPEC">IFCONFIG0_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../qspi/ifconfig0/struct.R.html" title="struct nrf52840_pac::qspi::ifconfig0::R">ifconfig0::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-340" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/ifconfig0.rs.html#425">source</a><a href="#associatedtype.Reader-340" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../qspi/ifconfig0/struct.R.html" title="struct nrf52840_pac::qspi::ifconfig0::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-IFCONFIG1_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/ifconfig1.rs.html#201-203">source</a><a href="#impl-Readable-for-IFCONFIG1_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../qspi/ifconfig1/struct.IFCONFIG1_SPEC.html" title="struct nrf52840_pac::qspi::ifconfig1::IFCONFIG1_SPEC">IFCONFIG1_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../qspi/ifconfig1/struct.R.html" title="struct nrf52840_pac::qspi::ifconfig1::R">ifconfig1::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-341" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/ifconfig1.rs.html#202">source</a><a href="#associatedtype.Reader-341" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../qspi/ifconfig1/struct.R.html" title="struct nrf52840_pac::qspi::ifconfig1::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-IFTIMING_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/iftiming.rs.html#67-69">source</a><a href="#impl-Readable-for-IFTIMING_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../qspi/iftiming/struct.IFTIMING_SPEC.html" title="struct nrf52840_pac::qspi::iftiming::IFTIMING_SPEC">IFTIMING_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../qspi/iftiming/struct.R.html" title="struct nrf52840_pac::qspi::iftiming::R">iftiming::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-342" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/iftiming.rs.html#68">source</a><a href="#associatedtype.Reader-342" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../qspi/iftiming/struct.R.html" title="struct nrf52840_pac::qspi::iftiming::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTEN_SPEC-7" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/inten.rs.html#113-115">source</a><a href="#impl-Readable-for-INTEN_SPEC-7" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::qspi::inten::<a class="struct" href="../qspi/inten/struct.INTEN_SPEC.html" title="struct nrf52840_pac::qspi::inten::INTEN_SPEC">INTEN_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../qspi/inten/struct.R.html" title="struct nrf52840_pac::qspi::inten::R">inten::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-343" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/inten.rs.html#114">source</a><a href="#associatedtype.Reader-343" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../qspi/inten/struct.R.html" title="struct nrf52840_pac::qspi::inten::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENCLR_SPEC-15" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/intenclr.rs.html#120-122">source</a><a href="#impl-Readable-for-INTENCLR_SPEC-15" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::qspi::intenclr::<a class="struct" href="../qspi/intenclr/struct.INTENCLR_SPEC.html" title="struct nrf52840_pac::qspi::intenclr::INTENCLR_SPEC">INTENCLR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../qspi/intenclr/struct.R.html" title="struct nrf52840_pac::qspi::intenclr::R">intenclr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-344" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/intenclr.rs.html#121">source</a><a href="#associatedtype.Reader-344" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../qspi/intenclr/struct.R.html" title="struct nrf52840_pac::qspi::intenclr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENSET_SPEC-15" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/intenset.rs.html#120-122">source</a><a href="#impl-Readable-for-INTENSET_SPEC-15" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::qspi::intenset::<a class="struct" href="../qspi/intenset/struct.INTENSET_SPEC.html" title="struct nrf52840_pac::qspi::intenset::INTENSET_SPEC">INTENSET_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../qspi/intenset/struct.R.html" title="struct nrf52840_pac::qspi::intenset::R">intenset::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-345" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/intenset.rs.html#121">source</a><a href="#associatedtype.Reader-345" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../qspi/intenset/struct.R.html" title="struct nrf52840_pac::qspi::intenset::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-CSN_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/psel/csn.rs.html#141-143">source</a><a href="#impl-Readable-for-CSN_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::qspi::psel::csn::<a class="struct" href="../qspi/psel/csn/struct.CSN_SPEC.html" title="struct nrf52840_pac::qspi::psel::csn::CSN_SPEC">CSN_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../qspi/psel/csn/struct.R.html" title="struct nrf52840_pac::qspi::psel::csn::R">csn::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-346" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/psel/csn.rs.html#142">source</a><a href="#associatedtype.Reader-346" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../qspi/psel/csn/struct.R.html" title="struct nrf52840_pac::qspi::psel::csn::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-IO0_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/psel/io0.rs.html#141-143">source</a><a href="#impl-Readable-for-IO0_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../qspi/psel/io0/struct.IO0_SPEC.html" title="struct nrf52840_pac::qspi::psel::io0::IO0_SPEC">IO0_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../qspi/psel/io0/struct.R.html" title="struct nrf52840_pac::qspi::psel::io0::R">io0::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-347" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/psel/io0.rs.html#142">source</a><a href="#associatedtype.Reader-347" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../qspi/psel/io0/struct.R.html" title="struct nrf52840_pac::qspi::psel::io0::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-IO1_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/psel/io1.rs.html#141-143">source</a><a href="#impl-Readable-for-IO1_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../qspi/psel/io1/struct.IO1_SPEC.html" title="struct nrf52840_pac::qspi::psel::io1::IO1_SPEC">IO1_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../qspi/psel/io1/struct.R.html" title="struct nrf52840_pac::qspi::psel::io1::R">io1::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-348" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/psel/io1.rs.html#142">source</a><a href="#associatedtype.Reader-348" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../qspi/psel/io1/struct.R.html" title="struct nrf52840_pac::qspi::psel::io1::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-IO2_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/psel/io2.rs.html#141-143">source</a><a href="#impl-Readable-for-IO2_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../qspi/psel/io2/struct.IO2_SPEC.html" title="struct nrf52840_pac::qspi::psel::io2::IO2_SPEC">IO2_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../qspi/psel/io2/struct.R.html" title="struct nrf52840_pac::qspi::psel::io2::R">io2::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-349" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/psel/io2.rs.html#142">source</a><a href="#associatedtype.Reader-349" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../qspi/psel/io2/struct.R.html" title="struct nrf52840_pac::qspi::psel::io2::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-IO3_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/psel/io3.rs.html#141-143">source</a><a href="#impl-Readable-for-IO3_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../qspi/psel/io3/struct.IO3_SPEC.html" title="struct nrf52840_pac::qspi::psel::io3::IO3_SPEC">IO3_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../qspi/psel/io3/struct.R.html" title="struct nrf52840_pac::qspi::psel::io3::R">io3::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-350" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/psel/io3.rs.html#142">source</a><a href="#associatedtype.Reader-350" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../qspi/psel/io3/struct.R.html" title="struct nrf52840_pac::qspi::psel::io3::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-SCK_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/psel/sck.rs.html#141-143">source</a><a href="#impl-Readable-for-SCK_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::qspi::psel::sck::<a class="struct" href="../qspi/psel/sck/struct.SCK_SPEC.html" title="struct nrf52840_pac::qspi::psel::sck::SCK_SPEC">SCK_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../qspi/psel/sck/struct.R.html" title="struct nrf52840_pac::qspi::psel::sck::R">sck::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-351" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/psel/sck.rs.html#142">source</a><a href="#associatedtype.Reader-351" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../qspi/psel/sck/struct.R.html" title="struct nrf52840_pac::qspi::psel::sck::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-CNT_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/read/cnt.rs.html#67-69">source</a><a href="#impl-Readable-for-CNT_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::qspi::read::cnt::<a class="struct" href="../qspi/read/cnt/struct.CNT_SPEC.html" title="struct nrf52840_pac::qspi::read::cnt::CNT_SPEC">CNT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../qspi/read/cnt/struct.R.html" title="struct nrf52840_pac::qspi::read::cnt::R">cnt::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-352" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/read/cnt.rs.html#68">source</a><a href="#associatedtype.Reader-352" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../qspi/read/cnt/struct.R.html" title="struct nrf52840_pac::qspi::read::cnt::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-DST_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/read/dst.rs.html#67-69">source</a><a href="#impl-Readable-for-DST_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::qspi::read::dst::<a class="struct" href="../qspi/read/dst/struct.DST_SPEC.html" title="struct nrf52840_pac::qspi::read::dst::DST_SPEC">DST_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../qspi/read/dst/struct.R.html" title="struct nrf52840_pac::qspi::read::dst::R">dst::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-353" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/read/dst.rs.html#68">source</a><a href="#associatedtype.Reader-353" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../qspi/read/dst/struct.R.html" title="struct nrf52840_pac::qspi::read::dst::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-SRC_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/read/src.rs.html#67-69">source</a><a href="#impl-Readable-for-SRC_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::qspi::read::src::<a class="struct" href="../qspi/read/src/struct.SRC_SPEC.html" title="struct nrf52840_pac::qspi::read::src::SRC_SPEC">SRC_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../qspi/read/src/struct.R.html" title="struct nrf52840_pac::qspi::read::src::R">src::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-354" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/read/src.rs.html#68">source</a><a href="#associatedtype.Reader-354" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../qspi/read/src/struct.R.html" title="struct nrf52840_pac::qspi::read::src::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-STATUS_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/status.rs.html#113-115">source</a><a href="#impl-Readable-for-STATUS_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::qspi::status::<a class="struct" href="../qspi/status/struct.STATUS_SPEC.html" title="struct nrf52840_pac::qspi::status::STATUS_SPEC">STATUS_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../qspi/status/struct.R.html" title="struct nrf52840_pac::qspi::status::R">status::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-355" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/status.rs.html#114">source</a><a href="#associatedtype.Reader-355" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../qspi/status/struct.R.html" title="struct nrf52840_pac::qspi::status::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-CNT_SPEC-2" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/write/cnt.rs.html#67-69">source</a><a href="#impl-Readable-for-CNT_SPEC-2" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::qspi::write::cnt::<a class="struct" href="../qspi/write/cnt/struct.CNT_SPEC.html" title="struct nrf52840_pac::qspi::write::cnt::CNT_SPEC">CNT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../qspi/write/cnt/struct.R.html" title="struct nrf52840_pac::qspi::write::cnt::R">cnt::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-356" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/write/cnt.rs.html#68">source</a><a href="#associatedtype.Reader-356" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../qspi/write/cnt/struct.R.html" title="struct nrf52840_pac::qspi::write::cnt::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-DST_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/write/dst.rs.html#67-69">source</a><a href="#impl-Readable-for-DST_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::qspi::write::dst::<a class="struct" href="../qspi/write/dst/struct.DST_SPEC.html" title="struct nrf52840_pac::qspi::write::dst::DST_SPEC">DST_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../qspi/write/dst/struct.R.html" title="struct nrf52840_pac::qspi::write::dst::R">dst::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-357" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/write/dst.rs.html#68">source</a><a href="#associatedtype.Reader-357" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../qspi/write/dst/struct.R.html" title="struct nrf52840_pac::qspi::write::dst::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-SRC_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/write/src.rs.html#67-69">source</a><a href="#impl-Readable-for-SRC_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::qspi::write::src::<a class="struct" href="../qspi/write/src/struct.SRC_SPEC.html" title="struct nrf52840_pac::qspi::write::src::SRC_SPEC">SRC_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../qspi/write/src/struct.R.html" title="struct nrf52840_pac::qspi::write::src::R">src::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-358" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/write/src.rs.html#68">source</a><a href="#associatedtype.Reader-358" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../qspi/write/src/struct.R.html" title="struct nrf52840_pac::qspi::write::src::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-XIPOFFSET_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/xipoffset.rs.html#68-70">source</a><a href="#impl-Readable-for-XIPOFFSET_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../qspi/xipoffset/struct.XIPOFFSET_SPEC.html" title="struct nrf52840_pac::qspi::xipoffset::XIPOFFSET_SPEC">XIPOFFSET_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../qspi/xipoffset/struct.R.html" title="struct nrf52840_pac::qspi::xipoffset::R">xipoffset::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-359" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/qspi/xipoffset.rs.html#69">source</a><a href="#associatedtype.Reader-359" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../qspi/xipoffset/struct.R.html" title="struct nrf52840_pac::qspi::xipoffset::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-BASE0_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/base0.rs.html#67-69">source</a><a href="#impl-Readable-for-BASE0_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../radio/base0/struct.BASE0_SPEC.html" title="struct nrf52840_pac::radio::base0::BASE0_SPEC">BASE0_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/base0/struct.R.html" title="struct nrf52840_pac::radio::base0::R">base0::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-360" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/base0.rs.html#68">source</a><a href="#associatedtype.Reader-360" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/base0/struct.R.html" title="struct nrf52840_pac::radio::base0::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-BASE1_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/base1.rs.html#67-69">source</a><a href="#impl-Readable-for-BASE1_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../radio/base1/struct.BASE1_SPEC.html" title="struct nrf52840_pac::radio::base1::BASE1_SPEC">BASE1_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/base1/struct.R.html" title="struct nrf52840_pac::radio::base1::R">base1::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-361" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/base1.rs.html#68">source</a><a href="#associatedtype.Reader-361" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/base1/struct.R.html" title="struct nrf52840_pac::radio::base1::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-BCC_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/bcc.rs.html#67-69">source</a><a href="#impl-Readable-for-BCC_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../radio/bcc/struct.BCC_SPEC.html" title="struct nrf52840_pac::radio::bcc::BCC_SPEC">BCC_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/bcc/struct.R.html" title="struct nrf52840_pac::radio::bcc::R">bcc::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-362" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/bcc.rs.html#68">source</a><a href="#associatedtype.Reader-362" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/bcc/struct.R.html" title="struct nrf52840_pac::radio::bcc::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-CCACTRL_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/ccactrl.rs.html#197-199">source</a><a href="#impl-Readable-for-CCACTRL_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../radio/ccactrl/struct.CCACTRL_SPEC.html" title="struct nrf52840_pac::radio::ccactrl::CCACTRL_SPEC">CCACTRL_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/ccactrl/struct.R.html" title="struct nrf52840_pac::radio::ccactrl::R">ccactrl::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-363" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/ccactrl.rs.html#198">source</a><a href="#associatedtype.Reader-363" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/ccactrl/struct.R.html" title="struct nrf52840_pac::radio::ccactrl::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-CRCCNF_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/crccnf.rs.html#217-219">source</a><a href="#impl-Readable-for-CRCCNF_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../radio/crccnf/struct.CRCCNF_SPEC.html" title="struct nrf52840_pac::radio::crccnf::CRCCNF_SPEC">CRCCNF_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/crccnf/struct.R.html" title="struct nrf52840_pac::radio::crccnf::R">crccnf::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-364" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/crccnf.rs.html#218">source</a><a href="#associatedtype.Reader-364" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/crccnf/struct.R.html" title="struct nrf52840_pac::radio::crccnf::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-CRCINIT_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/crcinit.rs.html#67-69">source</a><a href="#impl-Readable-for-CRCINIT_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../radio/crcinit/struct.CRCINIT_SPEC.html" title="struct nrf52840_pac::radio::crcinit::CRCINIT_SPEC">CRCINIT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/crcinit/struct.R.html" title="struct nrf52840_pac::radio::crcinit::R">crcinit::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-365" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/crcinit.rs.html#68">source</a><a href="#associatedtype.Reader-365" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/crcinit/struct.R.html" title="struct nrf52840_pac::radio::crcinit::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-CRCPOLY_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/crcpoly.rs.html#67-69">source</a><a href="#impl-Readable-for-CRCPOLY_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../radio/crcpoly/struct.CRCPOLY_SPEC.html" title="struct nrf52840_pac::radio::crcpoly::CRCPOLY_SPEC">CRCPOLY_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/crcpoly/struct.R.html" title="struct nrf52840_pac::radio::crcpoly::R">crcpoly::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-366" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/crcpoly.rs.html#68">source</a><a href="#associatedtype.Reader-366" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/crcpoly/struct.R.html" title="struct nrf52840_pac::radio::crcpoly::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-CRCSTATUS_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/crcstatus.rs.html#65-67">source</a><a href="#impl-Readable-for-CRCSTATUS_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../radio/crcstatus/struct.CRCSTATUS_SPEC.html" title="struct nrf52840_pac::radio::crcstatus::CRCSTATUS_SPEC">CRCSTATUS_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/crcstatus/struct.R.html" title="struct nrf52840_pac::radio::crcstatus::R">crcstatus::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-367" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/crcstatus.rs.html#66">source</a><a href="#associatedtype.Reader-367" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/crcstatus/struct.R.html" title="struct nrf52840_pac::radio::crcstatus::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-DAB_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/dab.rs.html#67-69">source</a><a href="#impl-Readable-for-DAB_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../radio/dab/struct.DAB_SPEC.html" title="struct nrf52840_pac::radio::dab::DAB_SPEC">DAB_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/dab/struct.R.html" title="struct nrf52840_pac::radio::dab::R">dab::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-368" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/dab.rs.html#68">source</a><a href="#associatedtype.Reader-368" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/dab/struct.R.html" title="struct nrf52840_pac::radio::dab::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-DACNF_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/dacnf.rs.html#645-647">source</a><a href="#impl-Readable-for-DACNF_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../radio/dacnf/struct.DACNF_SPEC.html" title="struct nrf52840_pac::radio::dacnf::DACNF_SPEC">DACNF_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/dacnf/struct.R.html" title="struct nrf52840_pac::radio::dacnf::R">dacnf::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-369" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/dacnf.rs.html#646">source</a><a href="#associatedtype.Reader-369" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/dacnf/struct.R.html" title="struct nrf52840_pac::radio::dacnf::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-DAI_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/dai.rs.html#31-33">source</a><a href="#impl-Readable-for-DAI_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../radio/dai/struct.DAI_SPEC.html" title="struct nrf52840_pac::radio::dai::DAI_SPEC">DAI_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/dai/struct.R.html" title="struct nrf52840_pac::radio::dai::R">dai::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-370" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/dai.rs.html#32">source</a><a href="#associatedtype.Reader-370" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/dai/struct.R.html" title="struct nrf52840_pac::radio::dai::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-DAP_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/dap.rs.html#67-69">source</a><a href="#impl-Readable-for-DAP_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../radio/dap/struct.DAP_SPEC.html" title="struct nrf52840_pac::radio::dap::DAP_SPEC">DAP_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/dap/struct.R.html" title="struct nrf52840_pac::radio::dap::R">dap::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-371" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/dap.rs.html#68">source</a><a href="#associatedtype.Reader-371" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/dap/struct.R.html" title="struct nrf52840_pac::radio::dap::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-DATAWHITEIV_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/datawhiteiv.rs.html#68-70">source</a><a href="#impl-Readable-for-DATAWHITEIV_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../radio/datawhiteiv/struct.DATAWHITEIV_SPEC.html" title="struct nrf52840_pac::radio::datawhiteiv::DATAWHITEIV_SPEC">DATAWHITEIV_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/datawhiteiv/struct.R.html" title="struct nrf52840_pac::radio::datawhiteiv::R">datawhiteiv::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-372" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/datawhiteiv.rs.html#69">source</a><a href="#associatedtype.Reader-372" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/datawhiteiv/struct.R.html" title="struct nrf52840_pac::radio::datawhiteiv::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EDCNT_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/edcnt.rs.html#67-69">source</a><a href="#impl-Readable-for-EDCNT_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../radio/edcnt/struct.EDCNT_SPEC.html" title="struct nrf52840_pac::radio::edcnt::EDCNT_SPEC">EDCNT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/edcnt/struct.R.html" title="struct nrf52840_pac::radio::edcnt::R">edcnt::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-373" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/edcnt.rs.html#68">source</a><a href="#associatedtype.Reader-373" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/edcnt/struct.R.html" title="struct nrf52840_pac::radio::edcnt::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EDSAMPLE_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/edsample.rs.html#67-69">source</a><a href="#impl-Readable-for-EDSAMPLE_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../radio/edsample/struct.EDSAMPLE_SPEC.html" title="struct nrf52840_pac::radio::edsample::EDSAMPLE_SPEC">EDSAMPLE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/edsample/struct.R.html" title="struct nrf52840_pac::radio::edsample::R">edsample::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-374" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/edsample.rs.html#68">source</a><a href="#associatedtype.Reader-374" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/edsample/struct.R.html" title="struct nrf52840_pac::radio::edsample::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_ADDRESS_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/events_address.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_ADDRESS_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../radio/events_address/struct.EVENTS_ADDRESS_SPEC.html" title="struct nrf52840_pac::radio::events_address::EVENTS_ADDRESS_SPEC">EVENTS_ADDRESS_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/events_address/struct.R.html" title="struct nrf52840_pac::radio::events_address::R">events_address::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-375" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/events_address.rs.html#69">source</a><a href="#associatedtype.Reader-375" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/events_address/struct.R.html" title="struct nrf52840_pac::radio::events_address::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_BCMATCH_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/events_bcmatch.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_BCMATCH_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../radio/events_bcmatch/struct.EVENTS_BCMATCH_SPEC.html" title="struct nrf52840_pac::radio::events_bcmatch::EVENTS_BCMATCH_SPEC">EVENTS_BCMATCH_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/events_bcmatch/struct.R.html" title="struct nrf52840_pac::radio::events_bcmatch::R">events_bcmatch::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-376" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/events_bcmatch.rs.html#69">source</a><a href="#associatedtype.Reader-376" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/events_bcmatch/struct.R.html" title="struct nrf52840_pac::radio::events_bcmatch::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_CCABUSY_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/events_ccabusy.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_CCABUSY_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../radio/events_ccabusy/struct.EVENTS_CCABUSY_SPEC.html" title="struct nrf52840_pac::radio::events_ccabusy::EVENTS_CCABUSY_SPEC">EVENTS_CCABUSY_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/events_ccabusy/struct.R.html" title="struct nrf52840_pac::radio::events_ccabusy::R">events_ccabusy::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-377" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/events_ccabusy.rs.html#69">source</a><a href="#associatedtype.Reader-377" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/events_ccabusy/struct.R.html" title="struct nrf52840_pac::radio::events_ccabusy::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_CCAIDLE_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/events_ccaidle.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_CCAIDLE_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../radio/events_ccaidle/struct.EVENTS_CCAIDLE_SPEC.html" title="struct nrf52840_pac::radio::events_ccaidle::EVENTS_CCAIDLE_SPEC">EVENTS_CCAIDLE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/events_ccaidle/struct.R.html" title="struct nrf52840_pac::radio::events_ccaidle::R">events_ccaidle::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-378" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/events_ccaidle.rs.html#69">source</a><a href="#associatedtype.Reader-378" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/events_ccaidle/struct.R.html" title="struct nrf52840_pac::radio::events_ccaidle::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_CCASTOPPED_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/events_ccastopped.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_CCASTOPPED_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../radio/events_ccastopped/struct.EVENTS_CCASTOPPED_SPEC.html" title="struct nrf52840_pac::radio::events_ccastopped::EVENTS_CCASTOPPED_SPEC">EVENTS_CCASTOPPED_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/events_ccastopped/struct.R.html" title="struct nrf52840_pac::radio::events_ccastopped::R">events_ccastopped::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-379" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/events_ccastopped.rs.html#69">source</a><a href="#associatedtype.Reader-379" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/events_ccastopped/struct.R.html" title="struct nrf52840_pac::radio::events_ccastopped::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_CRCERROR_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/events_crcerror.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_CRCERROR_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../radio/events_crcerror/struct.EVENTS_CRCERROR_SPEC.html" title="struct nrf52840_pac::radio::events_crcerror::EVENTS_CRCERROR_SPEC">EVENTS_CRCERROR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/events_crcerror/struct.R.html" title="struct nrf52840_pac::radio::events_crcerror::R">events_crcerror::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-380" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/events_crcerror.rs.html#69">source</a><a href="#associatedtype.Reader-380" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/events_crcerror/struct.R.html" title="struct nrf52840_pac::radio::events_crcerror::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_CRCOK_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/events_crcok.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_CRCOK_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../radio/events_crcok/struct.EVENTS_CRCOK_SPEC.html" title="struct nrf52840_pac::radio::events_crcok::EVENTS_CRCOK_SPEC">EVENTS_CRCOK_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/events_crcok/struct.R.html" title="struct nrf52840_pac::radio::events_crcok::R">events_crcok::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-381" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/events_crcok.rs.html#68">source</a><a href="#associatedtype.Reader-381" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/events_crcok/struct.R.html" title="struct nrf52840_pac::radio::events_crcok::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_DEVMATCH_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/events_devmatch.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_DEVMATCH_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../radio/events_devmatch/struct.EVENTS_DEVMATCH_SPEC.html" title="struct nrf52840_pac::radio::events_devmatch::EVENTS_DEVMATCH_SPEC">EVENTS_DEVMATCH_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/events_devmatch/struct.R.html" title="struct nrf52840_pac::radio::events_devmatch::R">events_devmatch::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-382" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/events_devmatch.rs.html#69">source</a><a href="#associatedtype.Reader-382" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/events_devmatch/struct.R.html" title="struct nrf52840_pac::radio::events_devmatch::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_DEVMISS_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/events_devmiss.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_DEVMISS_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../radio/events_devmiss/struct.EVENTS_DEVMISS_SPEC.html" title="struct nrf52840_pac::radio::events_devmiss::EVENTS_DEVMISS_SPEC">EVENTS_DEVMISS_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/events_devmiss/struct.R.html" title="struct nrf52840_pac::radio::events_devmiss::R">events_devmiss::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-383" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/events_devmiss.rs.html#69">source</a><a href="#associatedtype.Reader-383" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/events_devmiss/struct.R.html" title="struct nrf52840_pac::radio::events_devmiss::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_DISABLED_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/events_disabled.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_DISABLED_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../radio/events_disabled/struct.EVENTS_DISABLED_SPEC.html" title="struct nrf52840_pac::radio::events_disabled::EVENTS_DISABLED_SPEC">EVENTS_DISABLED_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/events_disabled/struct.R.html" title="struct nrf52840_pac::radio::events_disabled::R">events_disabled::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-384" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/events_disabled.rs.html#69">source</a><a href="#associatedtype.Reader-384" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/events_disabled/struct.R.html" title="struct nrf52840_pac::radio::events_disabled::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_EDEND_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/events_edend.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_EDEND_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../radio/events_edend/struct.EVENTS_EDEND_SPEC.html" title="struct nrf52840_pac::radio::events_edend::EVENTS_EDEND_SPEC">EVENTS_EDEND_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/events_edend/struct.R.html" title="struct nrf52840_pac::radio::events_edend::R">events_edend::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-385" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/events_edend.rs.html#68">source</a><a href="#associatedtype.Reader-385" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/events_edend/struct.R.html" title="struct nrf52840_pac::radio::events_edend::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_EDSTOPPED_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/events_edstopped.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_EDSTOPPED_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../radio/events_edstopped/struct.EVENTS_EDSTOPPED_SPEC.html" title="struct nrf52840_pac::radio::events_edstopped::EVENTS_EDSTOPPED_SPEC">EVENTS_EDSTOPPED_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/events_edstopped/struct.R.html" title="struct nrf52840_pac::radio::events_edstopped::R">events_edstopped::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-386" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/events_edstopped.rs.html#69">source</a><a href="#associatedtype.Reader-386" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/events_edstopped/struct.R.html" title="struct nrf52840_pac::radio::events_edstopped::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_END_SPEC-2" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/events_end.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_END_SPEC-2" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::radio::events_end::<a class="struct" href="../radio/events_end/struct.EVENTS_END_SPEC.html" title="struct nrf52840_pac::radio::events_end::EVENTS_END_SPEC">EVENTS_END_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/events_end/struct.R.html" title="struct nrf52840_pac::radio::events_end::R">events_end::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-387" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/events_end.rs.html#68">source</a><a href="#associatedtype.Reader-387" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/events_end/struct.R.html" title="struct nrf52840_pac::radio::events_end::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_FRAMESTART_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/events_framestart.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_FRAMESTART_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../radio/events_framestart/struct.EVENTS_FRAMESTART_SPEC.html" title="struct nrf52840_pac::radio::events_framestart::EVENTS_FRAMESTART_SPEC">EVENTS_FRAMESTART_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/events_framestart/struct.R.html" title="struct nrf52840_pac::radio::events_framestart::R">events_framestart::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-388" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/events_framestart.rs.html#69">source</a><a href="#associatedtype.Reader-388" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/events_framestart/struct.R.html" title="struct nrf52840_pac::radio::events_framestart::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_MHRMATCH_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/events_mhrmatch.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_MHRMATCH_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../radio/events_mhrmatch/struct.EVENTS_MHRMATCH_SPEC.html" title="struct nrf52840_pac::radio::events_mhrmatch::EVENTS_MHRMATCH_SPEC">EVENTS_MHRMATCH_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/events_mhrmatch/struct.R.html" title="struct nrf52840_pac::radio::events_mhrmatch::R">events_mhrmatch::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-389" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/events_mhrmatch.rs.html#69">source</a><a href="#associatedtype.Reader-389" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/events_mhrmatch/struct.R.html" title="struct nrf52840_pac::radio::events_mhrmatch::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_PAYLOAD_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/events_payload.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_PAYLOAD_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../radio/events_payload/struct.EVENTS_PAYLOAD_SPEC.html" title="struct nrf52840_pac::radio::events_payload::EVENTS_PAYLOAD_SPEC">EVENTS_PAYLOAD_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/events_payload/struct.R.html" title="struct nrf52840_pac::radio::events_payload::R">events_payload::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-390" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/events_payload.rs.html#69">source</a><a href="#associatedtype.Reader-390" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/events_payload/struct.R.html" title="struct nrf52840_pac::radio::events_payload::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_PHYEND_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/events_phyend.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_PHYEND_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../radio/events_phyend/struct.EVENTS_PHYEND_SPEC.html" title="struct nrf52840_pac::radio::events_phyend::EVENTS_PHYEND_SPEC">EVENTS_PHYEND_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/events_phyend/struct.R.html" title="struct nrf52840_pac::radio::events_phyend::R">events_phyend::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-391" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/events_phyend.rs.html#68">source</a><a href="#associatedtype.Reader-391" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/events_phyend/struct.R.html" title="struct nrf52840_pac::radio::events_phyend::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_RATEBOOST_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/events_rateboost.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_RATEBOOST_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../radio/events_rateboost/struct.EVENTS_RATEBOOST_SPEC.html" title="struct nrf52840_pac::radio::events_rateboost::EVENTS_RATEBOOST_SPEC">EVENTS_RATEBOOST_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/events_rateboost/struct.R.html" title="struct nrf52840_pac::radio::events_rateboost::R">events_rateboost::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-392" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/events_rateboost.rs.html#69">source</a><a href="#associatedtype.Reader-392" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/events_rateboost/struct.R.html" title="struct nrf52840_pac::radio::events_rateboost::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_READY_SPEC-4" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/events_ready.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_READY_SPEC-4" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::radio::events_ready::<a class="struct" href="../radio/events_ready/struct.EVENTS_READY_SPEC.html" title="struct nrf52840_pac::radio::events_ready::EVENTS_READY_SPEC">EVENTS_READY_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/events_ready/struct.R.html" title="struct nrf52840_pac::radio::events_ready::R">events_ready::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-393" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/events_ready.rs.html#68">source</a><a href="#associatedtype.Reader-393" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/events_ready/struct.R.html" title="struct nrf52840_pac::radio::events_ready::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_RSSIEND_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/events_rssiend.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_RSSIEND_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../radio/events_rssiend/struct.EVENTS_RSSIEND_SPEC.html" title="struct nrf52840_pac::radio::events_rssiend::EVENTS_RSSIEND_SPEC">EVENTS_RSSIEND_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/events_rssiend/struct.R.html" title="struct nrf52840_pac::radio::events_rssiend::R">events_rssiend::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-394" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/events_rssiend.rs.html#69">source</a><a href="#associatedtype.Reader-394" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/events_rssiend/struct.R.html" title="struct nrf52840_pac::radio::events_rssiend::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_RXREADY_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/events_rxready.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_RXREADY_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../radio/events_rxready/struct.EVENTS_RXREADY_SPEC.html" title="struct nrf52840_pac::radio::events_rxready::EVENTS_RXREADY_SPEC">EVENTS_RXREADY_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/events_rxready/struct.R.html" title="struct nrf52840_pac::radio::events_rxready::R">events_rxready::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-395" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/events_rxready.rs.html#69">source</a><a href="#associatedtype.Reader-395" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/events_rxready/struct.R.html" title="struct nrf52840_pac::radio::events_rxready::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_TXREADY_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/events_txready.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_TXREADY_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../radio/events_txready/struct.EVENTS_TXREADY_SPEC.html" title="struct nrf52840_pac::radio::events_txready::EVENTS_TXREADY_SPEC">EVENTS_TXREADY_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/events_txready/struct.R.html" title="struct nrf52840_pac::radio::events_txready::R">events_txready::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-396" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/events_txready.rs.html#69">source</a><a href="#associatedtype.Reader-396" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/events_txready/struct.R.html" title="struct nrf52840_pac::radio::events_txready::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-FREQUENCY_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/frequency.rs.html#127-129">source</a><a href="#impl-Readable-for-FREQUENCY_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::radio::frequency::<a class="struct" href="../radio/frequency/struct.FREQUENCY_SPEC.html" title="struct nrf52840_pac::radio::frequency::FREQUENCY_SPEC">FREQUENCY_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/frequency/struct.R.html" title="struct nrf52840_pac::radio::frequency::R">frequency::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-397" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/frequency.rs.html#128">source</a><a href="#associatedtype.Reader-397" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/frequency/struct.R.html" title="struct nrf52840_pac::radio::frequency::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENCLR_SPEC-16" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/intenclr.rs.html#1527-1529">source</a><a href="#impl-Readable-for-INTENCLR_SPEC-16" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::radio::intenclr::<a class="struct" href="../radio/intenclr/struct.INTENCLR_SPEC.html" title="struct nrf52840_pac::radio::intenclr::INTENCLR_SPEC">INTENCLR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/intenclr/struct.R.html" title="struct nrf52840_pac::radio::intenclr::R">intenclr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-398" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/intenclr.rs.html#1528">source</a><a href="#associatedtype.Reader-398" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/intenclr/struct.R.html" title="struct nrf52840_pac::radio::intenclr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENSET_SPEC-16" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/intenset.rs.html#1527-1529">source</a><a href="#impl-Readable-for-INTENSET_SPEC-16" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::radio::intenset::<a class="struct" href="../radio/intenset/struct.INTENSET_SPEC.html" title="struct nrf52840_pac::radio::intenset::INTENSET_SPEC">INTENSET_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/intenset/struct.R.html" title="struct nrf52840_pac::radio::intenset::R">intenset::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-399" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/intenset.rs.html#1528">source</a><a href="#associatedtype.Reader-399" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/intenset/struct.R.html" title="struct nrf52840_pac::radio::intenset::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-MHRMATCHCONF_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/mhrmatchconf.rs.html#51-53">source</a><a href="#impl-Readable-for-MHRMATCHCONF_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../radio/mhrmatchconf/struct.MHRMATCHCONF_SPEC.html" title="struct nrf52840_pac::radio::mhrmatchconf::MHRMATCHCONF_SPEC">MHRMATCHCONF_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/mhrmatchconf/struct.R.html" title="struct nrf52840_pac::radio::mhrmatchconf::R">mhrmatchconf::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-400" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/mhrmatchconf.rs.html#52">source</a><a href="#associatedtype.Reader-400" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/mhrmatchconf/struct.R.html" title="struct nrf52840_pac::radio::mhrmatchconf::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-MHRMATCHMAS_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/mhrmatchmas.rs.html#51-53">source</a><a href="#impl-Readable-for-MHRMATCHMAS_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../radio/mhrmatchmas/struct.MHRMATCHMAS_SPEC.html" title="struct nrf52840_pac::radio::mhrmatchmas::MHRMATCHMAS_SPEC">MHRMATCHMAS_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/mhrmatchmas/struct.R.html" title="struct nrf52840_pac::radio::mhrmatchmas::R">mhrmatchmas::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-401" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/mhrmatchmas.rs.html#52">source</a><a href="#associatedtype.Reader-401" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/mhrmatchmas/struct.R.html" title="struct nrf52840_pac::radio::mhrmatchmas::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-MODE_SPEC-5" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/mode.rs.html#180-182">source</a><a href="#impl-Readable-for-MODE_SPEC-5" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::radio::mode::<a class="struct" href="../radio/mode/struct.MODE_SPEC.html" title="struct nrf52840_pac::radio::mode::MODE_SPEC">MODE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/mode/struct.R.html" title="struct nrf52840_pac::radio::mode::R">mode::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-402" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/mode.rs.html#181">source</a><a href="#associatedtype.Reader-402" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/mode/struct.R.html" title="struct nrf52840_pac::radio::mode::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-MODECNF0_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/modecnf0.rs.html#188-190">source</a><a href="#impl-Readable-for-MODECNF0_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../radio/modecnf0/struct.MODECNF0_SPEC.html" title="struct nrf52840_pac::radio::modecnf0::MODECNF0_SPEC">MODECNF0_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/modecnf0/struct.R.html" title="struct nrf52840_pac::radio::modecnf0::R">modecnf0::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-403" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/modecnf0.rs.html#189">source</a><a href="#associatedtype.Reader-403" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/modecnf0/struct.R.html" title="struct nrf52840_pac::radio::modecnf0::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-PACKETPTR_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/packetptr.rs.html#68-70">source</a><a href="#impl-Readable-for-PACKETPTR_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::radio::packetptr::<a class="struct" href="../radio/packetptr/struct.PACKETPTR_SPEC.html" title="struct nrf52840_pac::radio::packetptr::PACKETPTR_SPEC">PACKETPTR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/packetptr/struct.R.html" title="struct nrf52840_pac::radio::packetptr::R">packetptr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-404" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/packetptr.rs.html#69">source</a><a href="#associatedtype.Reader-404" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/packetptr/struct.R.html" title="struct nrf52840_pac::radio::packetptr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-PCNF0_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/pcnf0.rs.html#331-333">source</a><a href="#impl-Readable-for-PCNF0_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../radio/pcnf0/struct.PCNF0_SPEC.html" title="struct nrf52840_pac::radio::pcnf0::PCNF0_SPEC">PCNF0_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/pcnf0/struct.R.html" title="struct nrf52840_pac::radio::pcnf0::R">pcnf0::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-405" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/pcnf0.rs.html#332">source</a><a href="#associatedtype.Reader-405" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/pcnf0/struct.R.html" title="struct nrf52840_pac::radio::pcnf0::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-PCNF1_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/pcnf1.rs.html#215-217">source</a><a href="#impl-Readable-for-PCNF1_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../radio/pcnf1/struct.PCNF1_SPEC.html" title="struct nrf52840_pac::radio::pcnf1::PCNF1_SPEC">PCNF1_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/pcnf1/struct.R.html" title="struct nrf52840_pac::radio::pcnf1::R">pcnf1::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-406" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/pcnf1.rs.html#216">source</a><a href="#associatedtype.Reader-406" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/pcnf1/struct.R.html" title="struct nrf52840_pac::radio::pcnf1::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-PDUSTAT_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/pdustat.rs.html#108-110">source</a><a href="#impl-Readable-for-PDUSTAT_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../radio/pdustat/struct.PDUSTAT_SPEC.html" title="struct nrf52840_pac::radio::pdustat::PDUSTAT_SPEC">PDUSTAT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/pdustat/struct.R.html" title="struct nrf52840_pac::radio::pdustat::R">pdustat::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-407" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/pdustat.rs.html#109">source</a><a href="#associatedtype.Reader-407" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/pdustat/struct.R.html" title="struct nrf52840_pac::radio::pdustat::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-POWER_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/power.rs.html#113-115">source</a><a href="#impl-Readable-for-POWER_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::radio::power::<a class="struct" href="../radio/power/struct.POWER_SPEC.html" title="struct nrf52840_pac::radio::power::POWER_SPEC">POWER_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/power/struct.R.html" title="struct nrf52840_pac::radio::power::R">power::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-408" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/power.rs.html#114">source</a><a href="#associatedtype.Reader-408" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/power/struct.R.html" title="struct nrf52840_pac::radio::power::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-PREFIX0_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/prefix0.rs.html#109-111">source</a><a href="#impl-Readable-for-PREFIX0_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../radio/prefix0/struct.PREFIX0_SPEC.html" title="struct nrf52840_pac::radio::prefix0::PREFIX0_SPEC">PREFIX0_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/prefix0/struct.R.html" title="struct nrf52840_pac::radio::prefix0::R">prefix0::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-409" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/prefix0.rs.html#110">source</a><a href="#associatedtype.Reader-409" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/prefix0/struct.R.html" title="struct nrf52840_pac::radio::prefix0::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-PREFIX1_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/prefix1.rs.html#109-111">source</a><a href="#impl-Readable-for-PREFIX1_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../radio/prefix1/struct.PREFIX1_SPEC.html" title="struct nrf52840_pac::radio::prefix1::PREFIX1_SPEC">PREFIX1_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/prefix1/struct.R.html" title="struct nrf52840_pac::radio::prefix1::R">prefix1::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-410" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/prefix1.rs.html#110">source</a><a href="#associatedtype.Reader-410" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/prefix1/struct.R.html" title="struct nrf52840_pac::radio::prefix1::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-RSSISAMPLE_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/rssisample.rs.html#31-33">source</a><a href="#impl-Readable-for-RSSISAMPLE_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../radio/rssisample/struct.RSSISAMPLE_SPEC.html" title="struct nrf52840_pac::radio::rssisample::RSSISAMPLE_SPEC">RSSISAMPLE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/rssisample/struct.R.html" title="struct nrf52840_pac::radio::rssisample::R">rssisample::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-411" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/rssisample.rs.html#32">source</a><a href="#associatedtype.Reader-411" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/rssisample/struct.R.html" title="struct nrf52840_pac::radio::rssisample::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-RXADDRESSES_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/rxaddresses.rs.html#533-535">source</a><a href="#impl-Readable-for-RXADDRESSES_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../radio/rxaddresses/struct.RXADDRESSES_SPEC.html" title="struct nrf52840_pac::radio::rxaddresses::RXADDRESSES_SPEC">RXADDRESSES_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/rxaddresses/struct.R.html" title="struct nrf52840_pac::radio::rxaddresses::R">rxaddresses::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-412" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/rxaddresses.rs.html#534">source</a><a href="#associatedtype.Reader-412" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/rxaddresses/struct.R.html" title="struct nrf52840_pac::radio::rxaddresses::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-RXCRC_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/rxcrc.rs.html#31-33">source</a><a href="#impl-Readable-for-RXCRC_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../radio/rxcrc/struct.RXCRC_SPEC.html" title="struct nrf52840_pac::radio::rxcrc::RXCRC_SPEC">RXCRC_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/rxcrc/struct.R.html" title="struct nrf52840_pac::radio::rxcrc::R">rxcrc::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-413" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/rxcrc.rs.html#32">source</a><a href="#associatedtype.Reader-413" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/rxcrc/struct.R.html" title="struct nrf52840_pac::radio::rxcrc::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-RXMATCH_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/rxmatch.rs.html#31-33">source</a><a href="#impl-Readable-for-RXMATCH_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../radio/rxmatch/struct.RXMATCH_SPEC.html" title="struct nrf52840_pac::radio::rxmatch::RXMATCH_SPEC">RXMATCH_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/rxmatch/struct.R.html" title="struct nrf52840_pac::radio::rxmatch::R">rxmatch::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-414" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/rxmatch.rs.html#32">source</a><a href="#associatedtype.Reader-414" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/rxmatch/struct.R.html" title="struct nrf52840_pac::radio::rxmatch::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-SFD_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/sfd.rs.html#67-69">source</a><a href="#impl-Readable-for-SFD_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../radio/sfd/struct.SFD_SPEC.html" title="struct nrf52840_pac::radio::sfd::SFD_SPEC">SFD_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/sfd/struct.R.html" title="struct nrf52840_pac::radio::sfd::R">sfd::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-415" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/sfd.rs.html#68">source</a><a href="#associatedtype.Reader-415" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/sfd/struct.R.html" title="struct nrf52840_pac::radio::sfd::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-SHORTS_SPEC-6" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/shorts.rs.html#1209-1211">source</a><a href="#impl-Readable-for-SHORTS_SPEC-6" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::radio::shorts::<a class="struct" href="../radio/shorts/struct.SHORTS_SPEC.html" title="struct nrf52840_pac::radio::shorts::SHORTS_SPEC">SHORTS_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/shorts/struct.R.html" title="struct nrf52840_pac::radio::shorts::R">shorts::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-416" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/shorts.rs.html#1210">source</a><a href="#associatedtype.Reader-416" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/shorts/struct.R.html" title="struct nrf52840_pac::radio::shorts::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-STATE_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/state.rs.html#123-125">source</a><a href="#impl-Readable-for-STATE_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../radio/state/struct.STATE_SPEC.html" title="struct nrf52840_pac::radio::state::STATE_SPEC">STATE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/state/struct.R.html" title="struct nrf52840_pac::radio::state::R">state::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-417" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/state.rs.html#124">source</a><a href="#associatedtype.Reader-417" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/state/struct.R.html" title="struct nrf52840_pac::radio::state::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-TIFS_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/tifs.rs.html#67-69">source</a><a href="#impl-Readable-for-TIFS_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../radio/tifs/struct.TIFS_SPEC.html" title="struct nrf52840_pac::radio::tifs::TIFS_SPEC">TIFS_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/tifs/struct.R.html" title="struct nrf52840_pac::radio::tifs::R">tifs::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-418" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/tifs.rs.html#68">source</a><a href="#associatedtype.Reader-418" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/tifs/struct.R.html" title="struct nrf52840_pac::radio::tifs::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-TXADDRESS_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/txaddress.rs.html#67-69">source</a><a href="#impl-Readable-for-TXADDRESS_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../radio/txaddress/struct.TXADDRESS_SPEC.html" title="struct nrf52840_pac::radio::txaddress::TXADDRESS_SPEC">TXADDRESS_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/txaddress/struct.R.html" title="struct nrf52840_pac::radio::txaddress::R">txaddress::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-419" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/txaddress.rs.html#68">source</a><a href="#associatedtype.Reader-419" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/txaddress/struct.R.html" title="struct nrf52840_pac::radio::txaddress::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-TXPOWER_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/txpower.rs.html#285-287">source</a><a href="#impl-Readable-for-TXPOWER_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../radio/txpower/struct.TXPOWER_SPEC.html" title="struct nrf52840_pac::radio::txpower::TXPOWER_SPEC">TXPOWER_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../radio/txpower/struct.R.html" title="struct nrf52840_pac::radio::txpower::R">txpower::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-420" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/radio/txpower.rs.html#286">source</a><a href="#associatedtype.Reader-420" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../radio/txpower/struct.R.html" title="struct nrf52840_pac::radio::txpower::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-CONFIG_SPEC-2" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/rng/config.rs.html#113-115">source</a><a href="#impl-Readable-for-CONFIG_SPEC-2" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::rng::config::<a class="struct" href="../rng/config/struct.CONFIG_SPEC.html" title="struct nrf52840_pac::rng::config::CONFIG_SPEC">CONFIG_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../rng/config/struct.R.html" title="struct nrf52840_pac::rng::config::R">config::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-421" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/rng/config.rs.html#114">source</a><a href="#associatedtype.Reader-421" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../rng/config/struct.R.html" title="struct nrf52840_pac::rng::config::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_VALRDY_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/rng/events_valrdy.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_VALRDY_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../rng/events_valrdy/struct.EVENTS_VALRDY_SPEC.html" title="struct nrf52840_pac::rng::events_valrdy::EVENTS_VALRDY_SPEC">EVENTS_VALRDY_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../rng/events_valrdy/struct.R.html" title="struct nrf52840_pac::rng::events_valrdy::R">events_valrdy::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-422" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/rng/events_valrdy.rs.html#68">source</a><a href="#associatedtype.Reader-422" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../rng/events_valrdy/struct.R.html" title="struct nrf52840_pac::rng::events_valrdy::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENCLR_SPEC-17" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/rng/intenclr.rs.html#120-122">source</a><a href="#impl-Readable-for-INTENCLR_SPEC-17" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::rng::intenclr::<a class="struct" href="../rng/intenclr/struct.INTENCLR_SPEC.html" title="struct nrf52840_pac::rng::intenclr::INTENCLR_SPEC">INTENCLR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../rng/intenclr/struct.R.html" title="struct nrf52840_pac::rng::intenclr::R">intenclr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-423" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/rng/intenclr.rs.html#121">source</a><a href="#associatedtype.Reader-423" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../rng/intenclr/struct.R.html" title="struct nrf52840_pac::rng::intenclr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENSET_SPEC-17" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/rng/intenset.rs.html#120-122">source</a><a href="#impl-Readable-for-INTENSET_SPEC-17" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::rng::intenset::<a class="struct" href="../rng/intenset/struct.INTENSET_SPEC.html" title="struct nrf52840_pac::rng::intenset::INTENSET_SPEC">INTENSET_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../rng/intenset/struct.R.html" title="struct nrf52840_pac::rng::intenset::R">intenset::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-424" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/rng/intenset.rs.html#121">source</a><a href="#associatedtype.Reader-424" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../rng/intenset/struct.R.html" title="struct nrf52840_pac::rng::intenset::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-SHORTS_SPEC-7" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/rng/shorts.rs.html#113-115">source</a><a href="#impl-Readable-for-SHORTS_SPEC-7" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::rng::shorts::<a class="struct" href="../rng/shorts/struct.SHORTS_SPEC.html" title="struct nrf52840_pac::rng::shorts::SHORTS_SPEC">SHORTS_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../rng/shorts/struct.R.html" title="struct nrf52840_pac::rng::shorts::R">shorts::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-425" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/rng/shorts.rs.html#114">source</a><a href="#associatedtype.Reader-425" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../rng/shorts/struct.R.html" title="struct nrf52840_pac::rng::shorts::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-VALUE_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/rng/value.rs.html#31-33">source</a><a href="#impl-Readable-for-VALUE_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../rng/value/struct.VALUE_SPEC.html" title="struct nrf52840_pac::rng::value::VALUE_SPEC">VALUE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../rng/value/struct.R.html" title="struct nrf52840_pac::rng::value::R">value::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-426" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/rng/value.rs.html#32">source</a><a href="#associatedtype.Reader-426" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../rng/value/struct.R.html" title="struct nrf52840_pac::rng::value::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-CC_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/rtc0/cc.rs.html#67-69">source</a><a href="#impl-Readable-for-CC_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::rtc0::cc::<a class="struct" href="../rtc0/cc/struct.CC_SPEC.html" title="struct nrf52840_pac::rtc0::cc::CC_SPEC">CC_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../rtc0/cc/struct.R.html" title="struct nrf52840_pac::rtc0::cc::R">cc::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-427" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/rtc0/cc.rs.html#68">source</a><a href="#associatedtype.Reader-427" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../rtc0/cc/struct.R.html" title="struct nrf52840_pac::rtc0::cc::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-COUNTER_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/rtc0/counter.rs.html#31-33">source</a><a href="#impl-Readable-for-COUNTER_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../rtc0/counter/struct.COUNTER_SPEC.html" title="struct nrf52840_pac::rtc0::counter::COUNTER_SPEC">COUNTER_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../rtc0/counter/struct.R.html" title="struct nrf52840_pac::rtc0::counter::R">counter::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-428" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/rtc0/counter.rs.html#32">source</a><a href="#associatedtype.Reader-428" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../rtc0/counter/struct.R.html" title="struct nrf52840_pac::rtc0::counter::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_COMPARE_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/rtc0/events_compare.rs.html#69-71">source</a><a href="#impl-Readable-for-EVENTS_COMPARE_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::rtc0::events_compare::<a class="struct" href="../rtc0/events_compare/struct.EVENTS_COMPARE_SPEC.html" title="struct nrf52840_pac::rtc0::events_compare::EVENTS_COMPARE_SPEC">EVENTS_COMPARE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../rtc0/events_compare/struct.R.html" title="struct nrf52840_pac::rtc0::events_compare::R">events_compare::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-429" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/rtc0/events_compare.rs.html#70">source</a><a href="#associatedtype.Reader-429" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../rtc0/events_compare/struct.R.html" title="struct nrf52840_pac::rtc0::events_compare::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_OVRFLW_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/rtc0/events_ovrflw.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_OVRFLW_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../rtc0/events_ovrflw/struct.EVENTS_OVRFLW_SPEC.html" title="struct nrf52840_pac::rtc0::events_ovrflw::EVENTS_OVRFLW_SPEC">EVENTS_OVRFLW_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../rtc0/events_ovrflw/struct.R.html" title="struct nrf52840_pac::rtc0::events_ovrflw::R">events_ovrflw::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-430" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/rtc0/events_ovrflw.rs.html#68">source</a><a href="#associatedtype.Reader-430" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../rtc0/events_ovrflw/struct.R.html" title="struct nrf52840_pac::rtc0::events_ovrflw::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_TICK_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/rtc0/events_tick.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_TICK_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../rtc0/events_tick/struct.EVENTS_TICK_SPEC.html" title="struct nrf52840_pac::rtc0::events_tick::EVENTS_TICK_SPEC">EVENTS_TICK_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../rtc0/events_tick/struct.R.html" title="struct nrf52840_pac::rtc0::events_tick::R">events_tick::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-431" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/rtc0/events_tick.rs.html#68">source</a><a href="#associatedtype.Reader-431" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../rtc0/events_tick/struct.R.html" title="struct nrf52840_pac::rtc0::events_tick::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVTEN_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/rtc0/evten.rs.html#433-435">source</a><a href="#impl-Readable-for-EVTEN_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../rtc0/evten/struct.EVTEN_SPEC.html" title="struct nrf52840_pac::rtc0::evten::EVTEN_SPEC">EVTEN_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../rtc0/evten/struct.R.html" title="struct nrf52840_pac::rtc0::evten::R">evten::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-432" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/rtc0/evten.rs.html#434">source</a><a href="#associatedtype.Reader-432" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../rtc0/evten/struct.R.html" title="struct nrf52840_pac::rtc0::evten::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVTENCLR_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/rtc0/evtenclr.rs.html#479-481">source</a><a href="#impl-Readable-for-EVTENCLR_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../rtc0/evtenclr/struct.EVTENCLR_SPEC.html" title="struct nrf52840_pac::rtc0::evtenclr::EVTENCLR_SPEC">EVTENCLR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../rtc0/evtenclr/struct.R.html" title="struct nrf52840_pac::rtc0::evtenclr::R">evtenclr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-433" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/rtc0/evtenclr.rs.html#480">source</a><a href="#associatedtype.Reader-433" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../rtc0/evtenclr/struct.R.html" title="struct nrf52840_pac::rtc0::evtenclr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVTENSET_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/rtc0/evtenset.rs.html#479-481">source</a><a href="#impl-Readable-for-EVTENSET_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../rtc0/evtenset/struct.EVTENSET_SPEC.html" title="struct nrf52840_pac::rtc0::evtenset::EVTENSET_SPEC">EVTENSET_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../rtc0/evtenset/struct.R.html" title="struct nrf52840_pac::rtc0::evtenset::R">evtenset::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-434" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/rtc0/evtenset.rs.html#480">source</a><a href="#associatedtype.Reader-434" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../rtc0/evtenset/struct.R.html" title="struct nrf52840_pac::rtc0::evtenset::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENCLR_SPEC-18" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/rtc0/intenclr.rs.html#479-481">source</a><a href="#impl-Readable-for-INTENCLR_SPEC-18" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::rtc0::intenclr::<a class="struct" href="../rtc0/intenclr/struct.INTENCLR_SPEC.html" title="struct nrf52840_pac::rtc0::intenclr::INTENCLR_SPEC">INTENCLR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../rtc0/intenclr/struct.R.html" title="struct nrf52840_pac::rtc0::intenclr::R">intenclr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-435" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/rtc0/intenclr.rs.html#480">source</a><a href="#associatedtype.Reader-435" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../rtc0/intenclr/struct.R.html" title="struct nrf52840_pac::rtc0::intenclr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENSET_SPEC-18" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/rtc0/intenset.rs.html#479-481">source</a><a href="#impl-Readable-for-INTENSET_SPEC-18" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::rtc0::intenset::<a class="struct" href="../rtc0/intenset/struct.INTENSET_SPEC.html" title="struct nrf52840_pac::rtc0::intenset::INTENSET_SPEC">INTENSET_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../rtc0/intenset/struct.R.html" title="struct nrf52840_pac::rtc0::intenset::R">intenset::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-436" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/rtc0/intenset.rs.html#480">source</a><a href="#associatedtype.Reader-436" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../rtc0/intenset/struct.R.html" title="struct nrf52840_pac::rtc0::intenset::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-PRESCALER_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/rtc0/prescaler.rs.html#68-70">source</a><a href="#impl-Readable-for-PRESCALER_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::rtc0::prescaler::<a class="struct" href="../rtc0/prescaler/struct.PRESCALER_SPEC.html" title="struct nrf52840_pac::rtc0::prescaler::PRESCALER_SPEC">PRESCALER_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../rtc0/prescaler/struct.R.html" title="struct nrf52840_pac::rtc0::prescaler::R">prescaler::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-437" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/rtc0/prescaler.rs.html#69">source</a><a href="#associatedtype.Reader-437" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../rtc0/prescaler/struct.R.html" title="struct nrf52840_pac::rtc0::prescaler::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-CONFIG_SPEC-3" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/saadc/ch/config.rs.html#663-665">source</a><a href="#impl-Readable-for-CONFIG_SPEC-3" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::saadc::ch::config::<a class="struct" href="../saadc/ch/config/struct.CONFIG_SPEC.html" title="struct nrf52840_pac::saadc::ch::config::CONFIG_SPEC">CONFIG_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../saadc/ch/config/struct.R.html" title="struct nrf52840_pac::saadc::ch::config::R">config::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-438" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/saadc/ch/config.rs.html#664">source</a><a href="#associatedtype.Reader-438" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../saadc/ch/config/struct.R.html" title="struct nrf52840_pac::saadc::ch::config::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-LIMIT_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/saadc/ch/limit.rs.html#81-83">source</a><a href="#impl-Readable-for-LIMIT_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../saadc/ch/limit/struct.LIMIT_SPEC.html" title="struct nrf52840_pac::saadc::ch::limit::LIMIT_SPEC">LIMIT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../saadc/ch/limit/struct.R.html" title="struct nrf52840_pac::saadc::ch::limit::R">limit::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-439" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/saadc/ch/limit.rs.html#82">source</a><a href="#associatedtype.Reader-439" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../saadc/ch/limit/struct.R.html" title="struct nrf52840_pac::saadc::ch::limit::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-PSELN_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/saadc/ch/pseln.rs.html#232-234">source</a><a href="#impl-Readable-for-PSELN_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../saadc/ch/pseln/struct.PSELN_SPEC.html" title="struct nrf52840_pac::saadc::ch::pseln::PSELN_SPEC">PSELN_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../saadc/ch/pseln/struct.R.html" title="struct nrf52840_pac::saadc::ch::pseln::R">pseln::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-440" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/saadc/ch/pseln.rs.html#233">source</a><a href="#associatedtype.Reader-440" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../saadc/ch/pseln/struct.R.html" title="struct nrf52840_pac::saadc::ch::pseln::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-PSELP_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/saadc/ch/pselp.rs.html#232-234">source</a><a href="#impl-Readable-for-PSELP_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../saadc/ch/pselp/struct.PSELP_SPEC.html" title="struct nrf52840_pac::saadc::ch::pselp::PSELP_SPEC">PSELP_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../saadc/ch/pselp/struct.R.html" title="struct nrf52840_pac::saadc::ch::pselp::R">pselp::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-441" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/saadc/ch/pselp.rs.html#233">source</a><a href="#associatedtype.Reader-441" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../saadc/ch/pselp/struct.R.html" title="struct nrf52840_pac::saadc::ch::pselp::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ENABLE_SPEC-10" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/saadc/enable.rs.html#113-115">source</a><a href="#impl-Readable-for-ENABLE_SPEC-10" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::saadc::enable::<a class="struct" href="../saadc/enable/struct.ENABLE_SPEC.html" title="struct nrf52840_pac::saadc::enable::ENABLE_SPEC">ENABLE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../saadc/enable/struct.R.html" title="struct nrf52840_pac::saadc::enable::R">enable::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-442" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/saadc/enable.rs.html#114">source</a><a href="#associatedtype.Reader-442" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../saadc/enable/struct.R.html" title="struct nrf52840_pac::saadc::enable::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_CALIBRATEDONE_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/saadc/events_calibratedone.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_CALIBRATEDONE_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../saadc/events_calibratedone/struct.EVENTS_CALIBRATEDONE_SPEC.html" title="struct nrf52840_pac::saadc::events_calibratedone::EVENTS_CALIBRATEDONE_SPEC">EVENTS_CALIBRATEDONE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../saadc/events_calibratedone/struct.R.html" title="struct nrf52840_pac::saadc::events_calibratedone::R">events_calibratedone::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-443" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/saadc/events_calibratedone.rs.html#69">source</a><a href="#associatedtype.Reader-443" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../saadc/events_calibratedone/struct.R.html" title="struct nrf52840_pac::saadc::events_calibratedone::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-LIMITH_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/saadc/events_ch/limith.rs.html#67-69">source</a><a href="#impl-Readable-for-LIMITH_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../saadc/events_ch/limith/struct.LIMITH_SPEC.html" title="struct nrf52840_pac::saadc::events_ch::limith::LIMITH_SPEC">LIMITH_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../saadc/events_ch/limith/struct.R.html" title="struct nrf52840_pac::saadc::events_ch::limith::R">limith::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-444" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/saadc/events_ch/limith.rs.html#68">source</a><a href="#associatedtype.Reader-444" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../saadc/events_ch/limith/struct.R.html" title="struct nrf52840_pac::saadc::events_ch::limith::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-LIMITL_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/saadc/events_ch/limitl.rs.html#67-69">source</a><a href="#impl-Readable-for-LIMITL_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../saadc/events_ch/limitl/struct.LIMITL_SPEC.html" title="struct nrf52840_pac::saadc::events_ch::limitl::LIMITL_SPEC">LIMITL_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../saadc/events_ch/limitl/struct.R.html" title="struct nrf52840_pac::saadc::events_ch::limitl::R">limitl::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-445" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/saadc/events_ch/limitl.rs.html#68">source</a><a href="#associatedtype.Reader-445" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../saadc/events_ch/limitl/struct.R.html" title="struct nrf52840_pac::saadc::events_ch::limitl::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_DONE_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/saadc/events_done.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_DONE_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::saadc::events_done::<a class="struct" href="../saadc/events_done/struct.EVENTS_DONE_SPEC.html" title="struct nrf52840_pac::saadc::events_done::EVENTS_DONE_SPEC">EVENTS_DONE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../saadc/events_done/struct.R.html" title="struct nrf52840_pac::saadc::events_done::R">events_done::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-446" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/saadc/events_done.rs.html#68">source</a><a href="#associatedtype.Reader-446" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../saadc/events_done/struct.R.html" title="struct nrf52840_pac::saadc::events_done::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_END_SPEC-3" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/saadc/events_end.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_END_SPEC-3" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::saadc::events_end::<a class="struct" href="../saadc/events_end/struct.EVENTS_END_SPEC.html" title="struct nrf52840_pac::saadc::events_end::EVENTS_END_SPEC">EVENTS_END_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../saadc/events_end/struct.R.html" title="struct nrf52840_pac::saadc::events_end::R">events_end::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-447" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/saadc/events_end.rs.html#68">source</a><a href="#associatedtype.Reader-447" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../saadc/events_end/struct.R.html" title="struct nrf52840_pac::saadc::events_end::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_RESULTDONE_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/saadc/events_resultdone.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_RESULTDONE_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../saadc/events_resultdone/struct.EVENTS_RESULTDONE_SPEC.html" title="struct nrf52840_pac::saadc::events_resultdone::EVENTS_RESULTDONE_SPEC">EVENTS_RESULTDONE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../saadc/events_resultdone/struct.R.html" title="struct nrf52840_pac::saadc::events_resultdone::R">events_resultdone::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-448" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/saadc/events_resultdone.rs.html#69">source</a><a href="#associatedtype.Reader-448" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../saadc/events_resultdone/struct.R.html" title="struct nrf52840_pac::saadc::events_resultdone::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_STARTED_SPEC-2" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/saadc/events_started.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_STARTED_SPEC-2" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::saadc::events_started::<a class="struct" href="../saadc/events_started/struct.EVENTS_STARTED_SPEC.html" title="struct nrf52840_pac::saadc::events_started::EVENTS_STARTED_SPEC">EVENTS_STARTED_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../saadc/events_started/struct.R.html" title="struct nrf52840_pac::saadc::events_started::R">events_started::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-449" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/saadc/events_started.rs.html#69">source</a><a href="#associatedtype.Reader-449" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../saadc/events_started/struct.R.html" title="struct nrf52840_pac::saadc::events_started::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_STOPPED_SPEC-4" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/saadc/events_stopped.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_STOPPED_SPEC-4" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::saadc::events_stopped::<a class="struct" href="../saadc/events_stopped/struct.EVENTS_STOPPED_SPEC.html" title="struct nrf52840_pac::saadc::events_stopped::EVENTS_STOPPED_SPEC">EVENTS_STOPPED_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../saadc/events_stopped/struct.R.html" title="struct nrf52840_pac::saadc::events_stopped::R">events_stopped::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-450" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/saadc/events_stopped.rs.html#69">source</a><a href="#associatedtype.Reader-450" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../saadc/events_stopped/struct.R.html" title="struct nrf52840_pac::saadc::events_stopped::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTEN_SPEC-8" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/saadc/inten.rs.html#1374-1376">source</a><a href="#impl-Readable-for-INTEN_SPEC-8" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::saadc::inten::<a class="struct" href="../saadc/inten/struct.INTEN_SPEC.html" title="struct nrf52840_pac::saadc::inten::INTEN_SPEC">INTEN_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../saadc/inten/struct.R.html" title="struct nrf52840_pac::saadc::inten::R">inten::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-451" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/saadc/inten.rs.html#1375">source</a><a href="#associatedtype.Reader-451" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../saadc/inten/struct.R.html" title="struct nrf52840_pac::saadc::inten::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENCLR_SPEC-19" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/saadc/intenclr.rs.html#1528-1530">source</a><a href="#impl-Readable-for-INTENCLR_SPEC-19" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::saadc::intenclr::<a class="struct" href="../saadc/intenclr/struct.INTENCLR_SPEC.html" title="struct nrf52840_pac::saadc::intenclr::INTENCLR_SPEC">INTENCLR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../saadc/intenclr/struct.R.html" title="struct nrf52840_pac::saadc::intenclr::R">intenclr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-452" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/saadc/intenclr.rs.html#1529">source</a><a href="#associatedtype.Reader-452" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../saadc/intenclr/struct.R.html" title="struct nrf52840_pac::saadc::intenclr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENSET_SPEC-19" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/saadc/intenset.rs.html#1528-1530">source</a><a href="#impl-Readable-for-INTENSET_SPEC-19" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::saadc::intenset::<a class="struct" href="../saadc/intenset/struct.INTENSET_SPEC.html" title="struct nrf52840_pac::saadc::intenset::INTENSET_SPEC">INTENSET_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../saadc/intenset/struct.R.html" title="struct nrf52840_pac::saadc::intenset::R">intenset::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-453" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/saadc/intenset.rs.html#1529">source</a><a href="#associatedtype.Reader-453" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../saadc/intenset/struct.R.html" title="struct nrf52840_pac::saadc::intenset::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-OVERSAMPLE_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/saadc/oversample.rs.html#207-209">source</a><a href="#impl-Readable-for-OVERSAMPLE_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../saadc/oversample/struct.OVERSAMPLE_SPEC.html" title="struct nrf52840_pac::saadc::oversample::OVERSAMPLE_SPEC">OVERSAMPLE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../saadc/oversample/struct.R.html" title="struct nrf52840_pac::saadc::oversample::R">oversample::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-454" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/saadc/oversample.rs.html#208">source</a><a href="#associatedtype.Reader-454" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../saadc/oversample/struct.R.html" title="struct nrf52840_pac::saadc::oversample::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-RESOLUTION_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/saadc/resolution.rs.html#141-143">source</a><a href="#impl-Readable-for-RESOLUTION_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../saadc/resolution/struct.RESOLUTION_SPEC.html" title="struct nrf52840_pac::saadc::resolution::RESOLUTION_SPEC">RESOLUTION_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../saadc/resolution/struct.R.html" title="struct nrf52840_pac::saadc::resolution::R">resolution::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-455" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/saadc/resolution.rs.html#142">source</a><a href="#associatedtype.Reader-455" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../saadc/resolution/struct.R.html" title="struct nrf52840_pac::saadc::resolution::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-AMOUNT_SPEC-2" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/saadc/result/amount.rs.html#31-33">source</a><a href="#impl-Readable-for-AMOUNT_SPEC-2" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::saadc::result::amount::<a class="struct" href="../saadc/result/amount/struct.AMOUNT_SPEC.html" title="struct nrf52840_pac::saadc::result::amount::AMOUNT_SPEC">AMOUNT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../saadc/result/amount/struct.R.html" title="struct nrf52840_pac::saadc::result::amount::R">amount::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-456" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/saadc/result/amount.rs.html#32">source</a><a href="#associatedtype.Reader-456" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../saadc/result/amount/struct.R.html" title="struct nrf52840_pac::saadc::result::amount::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-MAXCNT_SPEC-2" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/saadc/result/maxcnt.rs.html#67-69">source</a><a href="#impl-Readable-for-MAXCNT_SPEC-2" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::saadc::result::maxcnt::<a class="struct" href="../saadc/result/maxcnt/struct.MAXCNT_SPEC.html" title="struct nrf52840_pac::saadc::result::maxcnt::MAXCNT_SPEC">MAXCNT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../saadc/result/maxcnt/struct.R.html" title="struct nrf52840_pac::saadc::result::maxcnt::R">maxcnt::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-457" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/saadc/result/maxcnt.rs.html#68">source</a><a href="#associatedtype.Reader-457" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../saadc/result/maxcnt/struct.R.html" title="struct nrf52840_pac::saadc::result::maxcnt::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-PTR_SPEC-5" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/saadc/result/ptr.rs.html#67-69">source</a><a href="#impl-Readable-for-PTR_SPEC-5" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::saadc::result::ptr::<a class="struct" href="../saadc/result/ptr/struct.PTR_SPEC.html" title="struct nrf52840_pac::saadc::result::ptr::PTR_SPEC">PTR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../saadc/result/ptr/struct.R.html" title="struct nrf52840_pac::saadc::result::ptr::R">ptr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-458" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/saadc/result/ptr.rs.html#68">source</a><a href="#associatedtype.Reader-458" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../saadc/result/ptr/struct.R.html" title="struct nrf52840_pac::saadc::result::ptr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-SAMPLERATE_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/saadc/samplerate.rs.html#127-129">source</a><a href="#impl-Readable-for-SAMPLERATE_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../saadc/samplerate/struct.SAMPLERATE_SPEC.html" title="struct nrf52840_pac::saadc::samplerate::SAMPLERATE_SPEC">SAMPLERATE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../saadc/samplerate/struct.R.html" title="struct nrf52840_pac::saadc::samplerate::R">samplerate::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-459" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/saadc/samplerate.rs.html#128">source</a><a href="#associatedtype.Reader-459" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../saadc/samplerate/struct.R.html" title="struct nrf52840_pac::saadc::samplerate::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-STATUS_SPEC-2" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/saadc/status.rs.html#65-67">source</a><a href="#impl-Readable-for-STATUS_SPEC-2" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::saadc::status::<a class="struct" href="../saadc/status/struct.STATUS_SPEC.html" title="struct nrf52840_pac::saadc::status::STATUS_SPEC">STATUS_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../saadc/status/struct.R.html" title="struct nrf52840_pac::saadc::status::R">status::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-460" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/saadc/status.rs.html#66">source</a><a href="#associatedtype.Reader-460" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../saadc/status/struct.R.html" title="struct nrf52840_pac::saadc::status::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-CONFIG_SPEC-4" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spi0/config.rs.html#233-235">source</a><a href="#impl-Readable-for-CONFIG_SPEC-4" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::spi0::config::<a class="struct" href="../spi0/config/struct.CONFIG_SPEC.html" title="struct nrf52840_pac::spi0::config::CONFIG_SPEC">CONFIG_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spi0/config/struct.R.html" title="struct nrf52840_pac::spi0::config::R">config::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-461" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spi0/config.rs.html#234">source</a><a href="#associatedtype.Reader-461" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spi0/config/struct.R.html" title="struct nrf52840_pac::spi0::config::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ENABLE_SPEC-11" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spi0/enable.rs.html#115-117">source</a><a href="#impl-Readable-for-ENABLE_SPEC-11" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::spi0::enable::<a class="struct" href="../spi0/enable/struct.ENABLE_SPEC.html" title="struct nrf52840_pac::spi0::enable::ENABLE_SPEC">ENABLE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spi0/enable/struct.R.html" title="struct nrf52840_pac::spi0::enable::R">enable::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-462" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spi0/enable.rs.html#116">source</a><a href="#associatedtype.Reader-462" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spi0/enable/struct.R.html" title="struct nrf52840_pac::spi0::enable::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_READY_SPEC-5" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spi0/events_ready.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_READY_SPEC-5" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::spi0::events_ready::<a class="struct" href="../spi0/events_ready/struct.EVENTS_READY_SPEC.html" title="struct nrf52840_pac::spi0::events_ready::EVENTS_READY_SPEC">EVENTS_READY_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spi0/events_ready/struct.R.html" title="struct nrf52840_pac::spi0::events_ready::R">events_ready::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-463" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spi0/events_ready.rs.html#68">source</a><a href="#associatedtype.Reader-463" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spi0/events_ready/struct.R.html" title="struct nrf52840_pac::spi0::events_ready::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-FREQUENCY_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spi0/frequency.rs.html#181-183">source</a><a href="#impl-Readable-for-FREQUENCY_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::spi0::frequency::<a class="struct" href="../spi0/frequency/struct.FREQUENCY_SPEC.html" title="struct nrf52840_pac::spi0::frequency::FREQUENCY_SPEC">FREQUENCY_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spi0/frequency/struct.R.html" title="struct nrf52840_pac::spi0::frequency::R">frequency::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-464" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spi0/frequency.rs.html#182">source</a><a href="#associatedtype.Reader-464" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spi0/frequency/struct.R.html" title="struct nrf52840_pac::spi0::frequency::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENCLR_SPEC-20" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spi0/intenclr.rs.html#120-122">source</a><a href="#impl-Readable-for-INTENCLR_SPEC-20" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::spi0::intenclr::<a class="struct" href="../spi0/intenclr/struct.INTENCLR_SPEC.html" title="struct nrf52840_pac::spi0::intenclr::INTENCLR_SPEC">INTENCLR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spi0/intenclr/struct.R.html" title="struct nrf52840_pac::spi0::intenclr::R">intenclr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-465" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spi0/intenclr.rs.html#121">source</a><a href="#associatedtype.Reader-465" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spi0/intenclr/struct.R.html" title="struct nrf52840_pac::spi0::intenclr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENSET_SPEC-20" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spi0/intenset.rs.html#120-122">source</a><a href="#impl-Readable-for-INTENSET_SPEC-20" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::spi0::intenset::<a class="struct" href="../spi0/intenset/struct.INTENSET_SPEC.html" title="struct nrf52840_pac::spi0::intenset::INTENSET_SPEC">INTENSET_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spi0/intenset/struct.R.html" title="struct nrf52840_pac::spi0::intenset::R">intenset::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-466" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spi0/intenset.rs.html#121">source</a><a href="#associatedtype.Reader-466" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spi0/intenset/struct.R.html" title="struct nrf52840_pac::spi0::intenset::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-MISO_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spi0/psel/miso.rs.html#141-143">source</a><a href="#impl-Readable-for-MISO_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::spi0::psel::miso::<a class="struct" href="../spi0/psel/miso/struct.MISO_SPEC.html" title="struct nrf52840_pac::spi0::psel::miso::MISO_SPEC">MISO_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spi0/psel/miso/struct.R.html" title="struct nrf52840_pac::spi0::psel::miso::R">miso::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-467" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spi0/psel/miso.rs.html#142">source</a><a href="#associatedtype.Reader-467" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spi0/psel/miso/struct.R.html" title="struct nrf52840_pac::spi0::psel::miso::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-MOSI_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spi0/psel/mosi.rs.html#141-143">source</a><a href="#impl-Readable-for-MOSI_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::spi0::psel::mosi::<a class="struct" href="../spi0/psel/mosi/struct.MOSI_SPEC.html" title="struct nrf52840_pac::spi0::psel::mosi::MOSI_SPEC">MOSI_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spi0/psel/mosi/struct.R.html" title="struct nrf52840_pac::spi0::psel::mosi::R">mosi::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-468" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spi0/psel/mosi.rs.html#142">source</a><a href="#associatedtype.Reader-468" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spi0/psel/mosi/struct.R.html" title="struct nrf52840_pac::spi0::psel::mosi::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-SCK_SPEC-2" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spi0/psel/sck.rs.html#141-143">source</a><a href="#impl-Readable-for-SCK_SPEC-2" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::spi0::psel::sck::<a class="struct" href="../spi0/psel/sck/struct.SCK_SPEC.html" title="struct nrf52840_pac::spi0::psel::sck::SCK_SPEC">SCK_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spi0/psel/sck/struct.R.html" title="struct nrf52840_pac::spi0::psel::sck::R">sck::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-469" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spi0/psel/sck.rs.html#142">source</a><a href="#associatedtype.Reader-469" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spi0/psel/sck/struct.R.html" title="struct nrf52840_pac::spi0::psel::sck::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-RXD_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spi0/rxd.rs.html#31-33">source</a><a href="#impl-Readable-for-RXD_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::spi0::rxd::<a class="struct" href="../spi0/rxd/struct.RXD_SPEC.html" title="struct nrf52840_pac::spi0::rxd::RXD_SPEC">RXD_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spi0/rxd/struct.R.html" title="struct nrf52840_pac::spi0::rxd::R">rxd::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-470" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spi0/rxd.rs.html#32">source</a><a href="#associatedtype.Reader-470" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spi0/rxd/struct.R.html" title="struct nrf52840_pac::spi0::rxd::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-TXD_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spi0/txd.rs.html#67-69">source</a><a href="#impl-Readable-for-TXD_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::spi0::txd::<a class="struct" href="../spi0/txd/struct.TXD_SPEC.html" title="struct nrf52840_pac::spi0::txd::TXD_SPEC">TXD_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spi0/txd/struct.R.html" title="struct nrf52840_pac::spi0::txd::R">txd::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-471" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spi0/txd.rs.html#68">source</a><a href="#associatedtype.Reader-471" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spi0/txd/struct.R.html" title="struct nrf52840_pac::spi0::txd::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-CONFIG_SPEC-5" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/config.rs.html#233-235">source</a><a href="#impl-Readable-for-CONFIG_SPEC-5" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::spim0::config::<a class="struct" href="../spim0/config/struct.CONFIG_SPEC.html" title="struct nrf52840_pac::spim0::config::CONFIG_SPEC">CONFIG_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spim0/config/struct.R.html" title="struct nrf52840_pac::spim0::config::R">config::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-472" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/config.rs.html#234">source</a><a href="#associatedtype.Reader-472" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spim0/config/struct.R.html" title="struct nrf52840_pac::spim0::config::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-CSNPOL_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/csnpol.rs.html#113-115">source</a><a href="#impl-Readable-for-CSNPOL_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../spim0/csnpol/struct.CSNPOL_SPEC.html" title="struct nrf52840_pac::spim0::csnpol::CSNPOL_SPEC">CSNPOL_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spim0/csnpol/struct.R.html" title="struct nrf52840_pac::spim0::csnpol::R">csnpol::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-473" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/csnpol.rs.html#114">source</a><a href="#associatedtype.Reader-473" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spim0/csnpol/struct.R.html" title="struct nrf52840_pac::spim0::csnpol::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-DCXCNT_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/dcxcnt.rs.html#67-69">source</a><a href="#impl-Readable-for-DCXCNT_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../spim0/dcxcnt/struct.DCXCNT_SPEC.html" title="struct nrf52840_pac::spim0::dcxcnt::DCXCNT_SPEC">DCXCNT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spim0/dcxcnt/struct.R.html" title="struct nrf52840_pac::spim0::dcxcnt::R">dcxcnt::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-474" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/dcxcnt.rs.html#68">source</a><a href="#associatedtype.Reader-474" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spim0/dcxcnt/struct.R.html" title="struct nrf52840_pac::spim0::dcxcnt::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ENABLE_SPEC-12" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/enable.rs.html#115-117">source</a><a href="#impl-Readable-for-ENABLE_SPEC-12" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::spim0::enable::<a class="struct" href="../spim0/enable/struct.ENABLE_SPEC.html" title="struct nrf52840_pac::spim0::enable::ENABLE_SPEC">ENABLE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spim0/enable/struct.R.html" title="struct nrf52840_pac::spim0::enable::R">enable::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-475" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/enable.rs.html#116">source</a><a href="#associatedtype.Reader-475" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spim0/enable/struct.R.html" title="struct nrf52840_pac::spim0::enable::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_END_SPEC-4" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/events_end.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_END_SPEC-4" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::spim0::events_end::<a class="struct" href="../spim0/events_end/struct.EVENTS_END_SPEC.html" title="struct nrf52840_pac::spim0::events_end::EVENTS_END_SPEC">EVENTS_END_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spim0/events_end/struct.R.html" title="struct nrf52840_pac::spim0::events_end::R">events_end::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-476" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/events_end.rs.html#68">source</a><a href="#associatedtype.Reader-476" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spim0/events_end/struct.R.html" title="struct nrf52840_pac::spim0::events_end::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_ENDRX_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/events_endrx.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_ENDRX_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::spim0::events_endrx::<a class="struct" href="../spim0/events_endrx/struct.EVENTS_ENDRX_SPEC.html" title="struct nrf52840_pac::spim0::events_endrx::EVENTS_ENDRX_SPEC">EVENTS_ENDRX_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spim0/events_endrx/struct.R.html" title="struct nrf52840_pac::spim0::events_endrx::R">events_endrx::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-477" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/events_endrx.rs.html#68">source</a><a href="#associatedtype.Reader-477" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spim0/events_endrx/struct.R.html" title="struct nrf52840_pac::spim0::events_endrx::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_ENDTX_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/events_endtx.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_ENDTX_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::spim0::events_endtx::<a class="struct" href="../spim0/events_endtx/struct.EVENTS_ENDTX_SPEC.html" title="struct nrf52840_pac::spim0::events_endtx::EVENTS_ENDTX_SPEC">EVENTS_ENDTX_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spim0/events_endtx/struct.R.html" title="struct nrf52840_pac::spim0::events_endtx::R">events_endtx::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-478" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/events_endtx.rs.html#68">source</a><a href="#associatedtype.Reader-478" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spim0/events_endtx/struct.R.html" title="struct nrf52840_pac::spim0::events_endtx::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_STARTED_SPEC-3" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/events_started.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_STARTED_SPEC-3" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::spim0::events_started::<a class="struct" href="../spim0/events_started/struct.EVENTS_STARTED_SPEC.html" title="struct nrf52840_pac::spim0::events_started::EVENTS_STARTED_SPEC">EVENTS_STARTED_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spim0/events_started/struct.R.html" title="struct nrf52840_pac::spim0::events_started::R">events_started::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-479" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/events_started.rs.html#69">source</a><a href="#associatedtype.Reader-479" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spim0/events_started/struct.R.html" title="struct nrf52840_pac::spim0::events_started::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_STOPPED_SPEC-5" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/events_stopped.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_STOPPED_SPEC-5" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::spim0::events_stopped::<a class="struct" href="../spim0/events_stopped/struct.EVENTS_STOPPED_SPEC.html" title="struct nrf52840_pac::spim0::events_stopped::EVENTS_STOPPED_SPEC">EVENTS_STOPPED_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spim0/events_stopped/struct.R.html" title="struct nrf52840_pac::spim0::events_stopped::R">events_stopped::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-480" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/events_stopped.rs.html#69">source</a><a href="#associatedtype.Reader-480" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spim0/events_stopped/struct.R.html" title="struct nrf52840_pac::spim0::events_stopped::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-FREQUENCY_SPEC-2" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/frequency.rs.html#207-209">source</a><a href="#impl-Readable-for-FREQUENCY_SPEC-2" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::spim0::frequency::<a class="struct" href="../spim0/frequency/struct.FREQUENCY_SPEC.html" title="struct nrf52840_pac::spim0::frequency::FREQUENCY_SPEC">FREQUENCY_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spim0/frequency/struct.R.html" title="struct nrf52840_pac::spim0::frequency::R">frequency::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-481" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/frequency.rs.html#208">source</a><a href="#associatedtype.Reader-481" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spim0/frequency/struct.R.html" title="struct nrf52840_pac::spim0::frequency::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-CSNDUR_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/iftiming/csndur.rs.html#67-69">source</a><a href="#impl-Readable-for-CSNDUR_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../spim0/iftiming/csndur/struct.CSNDUR_SPEC.html" title="struct nrf52840_pac::spim0::iftiming::csndur::CSNDUR_SPEC">CSNDUR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spim0/iftiming/csndur/struct.R.html" title="struct nrf52840_pac::spim0::iftiming::csndur::R">csndur::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-482" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/iftiming/csndur.rs.html#68">source</a><a href="#associatedtype.Reader-482" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spim0/iftiming/csndur/struct.R.html" title="struct nrf52840_pac::spim0::iftiming::csndur::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-RXDELAY_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/iftiming/rxdelay.rs.html#67-69">source</a><a href="#impl-Readable-for-RXDELAY_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../spim0/iftiming/rxdelay/struct.RXDELAY_SPEC.html" title="struct nrf52840_pac::spim0::iftiming::rxdelay::RXDELAY_SPEC">RXDELAY_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spim0/iftiming/rxdelay/struct.R.html" title="struct nrf52840_pac::spim0::iftiming::rxdelay::R">rxdelay::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-483" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/iftiming/rxdelay.rs.html#68">source</a><a href="#associatedtype.Reader-483" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spim0/iftiming/rxdelay/struct.R.html" title="struct nrf52840_pac::spim0::iftiming::rxdelay::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENCLR_SPEC-21" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/intenclr.rs.html#388-390">source</a><a href="#impl-Readable-for-INTENCLR_SPEC-21" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::spim0::intenclr::<a class="struct" href="../spim0/intenclr/struct.INTENCLR_SPEC.html" title="struct nrf52840_pac::spim0::intenclr::INTENCLR_SPEC">INTENCLR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spim0/intenclr/struct.R.html" title="struct nrf52840_pac::spim0::intenclr::R">intenclr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-484" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/intenclr.rs.html#389">source</a><a href="#associatedtype.Reader-484" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spim0/intenclr/struct.R.html" title="struct nrf52840_pac::spim0::intenclr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENSET_SPEC-21" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/intenset.rs.html#388-390">source</a><a href="#impl-Readable-for-INTENSET_SPEC-21" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::spim0::intenset::<a class="struct" href="../spim0/intenset/struct.INTENSET_SPEC.html" title="struct nrf52840_pac::spim0::intenset::INTENSET_SPEC">INTENSET_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spim0/intenset/struct.R.html" title="struct nrf52840_pac::spim0::intenset::R">intenset::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-485" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/intenset.rs.html#389">source</a><a href="#associatedtype.Reader-485" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spim0/intenset/struct.R.html" title="struct nrf52840_pac::spim0::intenset::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ORC_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/orc.rs.html#67-69">source</a><a href="#impl-Readable-for-ORC_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::spim0::orc::<a class="struct" href="../spim0/orc/struct.ORC_SPEC.html" title="struct nrf52840_pac::spim0::orc::ORC_SPEC">ORC_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spim0/orc/struct.R.html" title="struct nrf52840_pac::spim0::orc::R">orc::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-486" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/orc.rs.html#68">source</a><a href="#associatedtype.Reader-486" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spim0/orc/struct.R.html" title="struct nrf52840_pac::spim0::orc::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-CSN_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/psel/csn.rs.html#141-143">source</a><a href="#impl-Readable-for-CSN_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::spim0::psel::csn::<a class="struct" href="../spim0/psel/csn/struct.CSN_SPEC.html" title="struct nrf52840_pac::spim0::psel::csn::CSN_SPEC">CSN_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spim0/psel/csn/struct.R.html" title="struct nrf52840_pac::spim0::psel::csn::R">csn::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-487" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/psel/csn.rs.html#142">source</a><a href="#associatedtype.Reader-487" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spim0/psel/csn/struct.R.html" title="struct nrf52840_pac::spim0::psel::csn::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-MISO_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/psel/miso.rs.html#141-143">source</a><a href="#impl-Readable-for-MISO_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::spim0::psel::miso::<a class="struct" href="../spim0/psel/miso/struct.MISO_SPEC.html" title="struct nrf52840_pac::spim0::psel::miso::MISO_SPEC">MISO_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spim0/psel/miso/struct.R.html" title="struct nrf52840_pac::spim0::psel::miso::R">miso::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-488" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/psel/miso.rs.html#142">source</a><a href="#associatedtype.Reader-488" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spim0/psel/miso/struct.R.html" title="struct nrf52840_pac::spim0::psel::miso::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-MOSI_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/psel/mosi.rs.html#141-143">source</a><a href="#impl-Readable-for-MOSI_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::spim0::psel::mosi::<a class="struct" href="../spim0/psel/mosi/struct.MOSI_SPEC.html" title="struct nrf52840_pac::spim0::psel::mosi::MOSI_SPEC">MOSI_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spim0/psel/mosi/struct.R.html" title="struct nrf52840_pac::spim0::psel::mosi::R">mosi::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-489" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/psel/mosi.rs.html#142">source</a><a href="#associatedtype.Reader-489" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spim0/psel/mosi/struct.R.html" title="struct nrf52840_pac::spim0::psel::mosi::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-SCK_SPEC-3" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/psel/sck.rs.html#141-143">source</a><a href="#impl-Readable-for-SCK_SPEC-3" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::spim0::psel::sck::<a class="struct" href="../spim0/psel/sck/struct.SCK_SPEC.html" title="struct nrf52840_pac::spim0::psel::sck::SCK_SPEC">SCK_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spim0/psel/sck/struct.R.html" title="struct nrf52840_pac::spim0::psel::sck::R">sck::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-490" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/psel/sck.rs.html#142">source</a><a href="#associatedtype.Reader-490" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spim0/psel/sck/struct.R.html" title="struct nrf52840_pac::spim0::psel::sck::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-PSELDCX_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/pseldcx.rs.html#141-143">source</a><a href="#impl-Readable-for-PSELDCX_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../spim0/pseldcx/struct.PSELDCX_SPEC.html" title="struct nrf52840_pac::spim0::pseldcx::PSELDCX_SPEC">PSELDCX_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spim0/pseldcx/struct.R.html" title="struct nrf52840_pac::spim0::pseldcx::R">pseldcx::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-491" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/pseldcx.rs.html#142">source</a><a href="#associatedtype.Reader-491" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spim0/pseldcx/struct.R.html" title="struct nrf52840_pac::spim0::pseldcx::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-AMOUNT_SPEC-3" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/rxd/amount.rs.html#31-33">source</a><a href="#impl-Readable-for-AMOUNT_SPEC-3" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::spim0::rxd::amount::<a class="struct" href="../spim0/rxd/amount/struct.AMOUNT_SPEC.html" title="struct nrf52840_pac::spim0::rxd::amount::AMOUNT_SPEC">AMOUNT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spim0/rxd/amount/struct.R.html" title="struct nrf52840_pac::spim0::rxd::amount::R">amount::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-492" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/rxd/amount.rs.html#32">source</a><a href="#associatedtype.Reader-492" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spim0/rxd/amount/struct.R.html" title="struct nrf52840_pac::spim0::rxd::amount::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-LIST_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/rxd/list.rs.html#115-117">source</a><a href="#impl-Readable-for-LIST_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::spim0::rxd::list::<a class="struct" href="../spim0/rxd/list/struct.LIST_SPEC.html" title="struct nrf52840_pac::spim0::rxd::list::LIST_SPEC">LIST_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spim0/rxd/list/struct.R.html" title="struct nrf52840_pac::spim0::rxd::list::R">list::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-493" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/rxd/list.rs.html#116">source</a><a href="#associatedtype.Reader-493" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spim0/rxd/list/struct.R.html" title="struct nrf52840_pac::spim0::rxd::list::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-MAXCNT_SPEC-3" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/rxd/maxcnt.rs.html#67-69">source</a><a href="#impl-Readable-for-MAXCNT_SPEC-3" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::spim0::rxd::maxcnt::<a class="struct" href="../spim0/rxd/maxcnt/struct.MAXCNT_SPEC.html" title="struct nrf52840_pac::spim0::rxd::maxcnt::MAXCNT_SPEC">MAXCNT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spim0/rxd/maxcnt/struct.R.html" title="struct nrf52840_pac::spim0::rxd::maxcnt::R">maxcnt::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-494" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/rxd/maxcnt.rs.html#68">source</a><a href="#associatedtype.Reader-494" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spim0/rxd/maxcnt/struct.R.html" title="struct nrf52840_pac::spim0::rxd::maxcnt::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-PTR_SPEC-6" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/rxd/ptr.rs.html#67-69">source</a><a href="#impl-Readable-for-PTR_SPEC-6" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::spim0::rxd::ptr::<a class="struct" href="../spim0/rxd/ptr/struct.PTR_SPEC.html" title="struct nrf52840_pac::spim0::rxd::ptr::PTR_SPEC">PTR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spim0/rxd/ptr/struct.R.html" title="struct nrf52840_pac::spim0::rxd::ptr::R">ptr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-495" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/rxd/ptr.rs.html#68">source</a><a href="#associatedtype.Reader-495" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spim0/rxd/ptr/struct.R.html" title="struct nrf52840_pac::spim0::rxd::ptr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-SHORTS_SPEC-8" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/shorts.rs.html#113-115">source</a><a href="#impl-Readable-for-SHORTS_SPEC-8" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::spim0::shorts::<a class="struct" href="../spim0/shorts/struct.SHORTS_SPEC.html" title="struct nrf52840_pac::spim0::shorts::SHORTS_SPEC">SHORTS_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spim0/shorts/struct.R.html" title="struct nrf52840_pac::spim0::shorts::R">shorts::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-496" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/shorts.rs.html#114">source</a><a href="#associatedtype.Reader-496" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spim0/shorts/struct.R.html" title="struct nrf52840_pac::spim0::shorts::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-STALLSTAT_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/stallstat.rs.html#173-175">source</a><a href="#impl-Readable-for-STALLSTAT_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../spim0/stallstat/struct.STALLSTAT_SPEC.html" title="struct nrf52840_pac::spim0::stallstat::STALLSTAT_SPEC">STALLSTAT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spim0/stallstat/struct.R.html" title="struct nrf52840_pac::spim0::stallstat::R">stallstat::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-497" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/stallstat.rs.html#174">source</a><a href="#associatedtype.Reader-497" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spim0/stallstat/struct.R.html" title="struct nrf52840_pac::spim0::stallstat::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-AMOUNT_SPEC-4" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/txd/amount.rs.html#31-33">source</a><a href="#impl-Readable-for-AMOUNT_SPEC-4" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::spim0::txd::amount::<a class="struct" href="../spim0/txd/amount/struct.AMOUNT_SPEC.html" title="struct nrf52840_pac::spim0::txd::amount::AMOUNT_SPEC">AMOUNT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spim0/txd/amount/struct.R.html" title="struct nrf52840_pac::spim0::txd::amount::R">amount::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-498" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/txd/amount.rs.html#32">source</a><a href="#associatedtype.Reader-498" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spim0/txd/amount/struct.R.html" title="struct nrf52840_pac::spim0::txd::amount::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-LIST_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/txd/list.rs.html#115-117">source</a><a href="#impl-Readable-for-LIST_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::spim0::txd::list::<a class="struct" href="../spim0/txd/list/struct.LIST_SPEC.html" title="struct nrf52840_pac::spim0::txd::list::LIST_SPEC">LIST_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spim0/txd/list/struct.R.html" title="struct nrf52840_pac::spim0::txd::list::R">list::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-499" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/txd/list.rs.html#116">source</a><a href="#associatedtype.Reader-499" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spim0/txd/list/struct.R.html" title="struct nrf52840_pac::spim0::txd::list::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-MAXCNT_SPEC-4" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/txd/maxcnt.rs.html#67-69">source</a><a href="#impl-Readable-for-MAXCNT_SPEC-4" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::spim0::txd::maxcnt::<a class="struct" href="../spim0/txd/maxcnt/struct.MAXCNT_SPEC.html" title="struct nrf52840_pac::spim0::txd::maxcnt::MAXCNT_SPEC">MAXCNT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spim0/txd/maxcnt/struct.R.html" title="struct nrf52840_pac::spim0::txd::maxcnt::R">maxcnt::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-500" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/txd/maxcnt.rs.html#68">source</a><a href="#associatedtype.Reader-500" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spim0/txd/maxcnt/struct.R.html" title="struct nrf52840_pac::spim0::txd::maxcnt::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-PTR_SPEC-7" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/txd/ptr.rs.html#67-69">source</a><a href="#impl-Readable-for-PTR_SPEC-7" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::spim0::txd::ptr::<a class="struct" href="../spim0/txd/ptr/struct.PTR_SPEC.html" title="struct nrf52840_pac::spim0::txd::ptr::PTR_SPEC">PTR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spim0/txd/ptr/struct.R.html" title="struct nrf52840_pac::spim0::txd::ptr::R">ptr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-501" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spim0/txd/ptr.rs.html#68">source</a><a href="#associatedtype.Reader-501" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spim0/txd/ptr/struct.R.html" title="struct nrf52840_pac::spim0::txd::ptr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-CONFIG_SPEC-6" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spis0/config.rs.html#233-235">source</a><a href="#impl-Readable-for-CONFIG_SPEC-6" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::spis0::config::<a class="struct" href="../spis0/config/struct.CONFIG_SPEC.html" title="struct nrf52840_pac::spis0::config::CONFIG_SPEC">CONFIG_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spis0/config/struct.R.html" title="struct nrf52840_pac::spis0::config::R">config::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-502" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spis0/config.rs.html#234">source</a><a href="#associatedtype.Reader-502" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spis0/config/struct.R.html" title="struct nrf52840_pac::spis0::config::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-DEF_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spis0/def.rs.html#67-69">source</a><a href="#impl-Readable-for-DEF_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../spis0/def/struct.DEF_SPEC.html" title="struct nrf52840_pac::spis0::def::DEF_SPEC">DEF_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spis0/def/struct.R.html" title="struct nrf52840_pac::spis0::def::R">def::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-503" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spis0/def.rs.html#68">source</a><a href="#associatedtype.Reader-503" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spis0/def/struct.R.html" title="struct nrf52840_pac::spis0::def::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ENABLE_SPEC-13" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spis0/enable.rs.html#115-117">source</a><a href="#impl-Readable-for-ENABLE_SPEC-13" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::spis0::enable::<a class="struct" href="../spis0/enable/struct.ENABLE_SPEC.html" title="struct nrf52840_pac::spis0::enable::ENABLE_SPEC">ENABLE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spis0/enable/struct.R.html" title="struct nrf52840_pac::spis0::enable::R">enable::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-504" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spis0/enable.rs.html#116">source</a><a href="#associatedtype.Reader-504" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spis0/enable/struct.R.html" title="struct nrf52840_pac::spis0::enable::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_ACQUIRED_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spis0/events_acquired.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_ACQUIRED_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../spis0/events_acquired/struct.EVENTS_ACQUIRED_SPEC.html" title="struct nrf52840_pac::spis0::events_acquired::EVENTS_ACQUIRED_SPEC">EVENTS_ACQUIRED_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spis0/events_acquired/struct.R.html" title="struct nrf52840_pac::spis0::events_acquired::R">events_acquired::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-505" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spis0/events_acquired.rs.html#69">source</a><a href="#associatedtype.Reader-505" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spis0/events_acquired/struct.R.html" title="struct nrf52840_pac::spis0::events_acquired::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_END_SPEC-5" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spis0/events_end.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_END_SPEC-5" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::spis0::events_end::<a class="struct" href="../spis0/events_end/struct.EVENTS_END_SPEC.html" title="struct nrf52840_pac::spis0::events_end::EVENTS_END_SPEC">EVENTS_END_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spis0/events_end/struct.R.html" title="struct nrf52840_pac::spis0::events_end::R">events_end::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-506" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spis0/events_end.rs.html#68">source</a><a href="#associatedtype.Reader-506" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spis0/events_end/struct.R.html" title="struct nrf52840_pac::spis0::events_end::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_ENDRX_SPEC-2" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spis0/events_endrx.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_ENDRX_SPEC-2" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::spis0::events_endrx::<a class="struct" href="../spis0/events_endrx/struct.EVENTS_ENDRX_SPEC.html" title="struct nrf52840_pac::spis0::events_endrx::EVENTS_ENDRX_SPEC">EVENTS_ENDRX_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spis0/events_endrx/struct.R.html" title="struct nrf52840_pac::spis0::events_endrx::R">events_endrx::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-507" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spis0/events_endrx.rs.html#68">source</a><a href="#associatedtype.Reader-507" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spis0/events_endrx/struct.R.html" title="struct nrf52840_pac::spis0::events_endrx::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENCLR_SPEC-22" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spis0/intenclr.rs.html#254-256">source</a><a href="#impl-Readable-for-INTENCLR_SPEC-22" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::spis0::intenclr::<a class="struct" href="../spis0/intenclr/struct.INTENCLR_SPEC.html" title="struct nrf52840_pac::spis0::intenclr::INTENCLR_SPEC">INTENCLR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spis0/intenclr/struct.R.html" title="struct nrf52840_pac::spis0::intenclr::R">intenclr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-508" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spis0/intenclr.rs.html#255">source</a><a href="#associatedtype.Reader-508" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spis0/intenclr/struct.R.html" title="struct nrf52840_pac::spis0::intenclr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENSET_SPEC-22" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spis0/intenset.rs.html#254-256">source</a><a href="#impl-Readable-for-INTENSET_SPEC-22" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::spis0::intenset::<a class="struct" href="../spis0/intenset/struct.INTENSET_SPEC.html" title="struct nrf52840_pac::spis0::intenset::INTENSET_SPEC">INTENSET_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spis0/intenset/struct.R.html" title="struct nrf52840_pac::spis0::intenset::R">intenset::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-509" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spis0/intenset.rs.html#255">source</a><a href="#associatedtype.Reader-509" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spis0/intenset/struct.R.html" title="struct nrf52840_pac::spis0::intenset::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ORC_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spis0/orc.rs.html#67-69">source</a><a href="#impl-Readable-for-ORC_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::spis0::orc::<a class="struct" href="../spis0/orc/struct.ORC_SPEC.html" title="struct nrf52840_pac::spis0::orc::ORC_SPEC">ORC_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spis0/orc/struct.R.html" title="struct nrf52840_pac::spis0::orc::R">orc::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-510" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spis0/orc.rs.html#68">source</a><a href="#associatedtype.Reader-510" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spis0/orc/struct.R.html" title="struct nrf52840_pac::spis0::orc::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-CSN_SPEC-2" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spis0/psel/csn.rs.html#141-143">source</a><a href="#impl-Readable-for-CSN_SPEC-2" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::spis0::psel::csn::<a class="struct" href="../spis0/psel/csn/struct.CSN_SPEC.html" title="struct nrf52840_pac::spis0::psel::csn::CSN_SPEC">CSN_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spis0/psel/csn/struct.R.html" title="struct nrf52840_pac::spis0::psel::csn::R">csn::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-511" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spis0/psel/csn.rs.html#142">source</a><a href="#associatedtype.Reader-511" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spis0/psel/csn/struct.R.html" title="struct nrf52840_pac::spis0::psel::csn::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-MISO_SPEC-2" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spis0/psel/miso.rs.html#141-143">source</a><a href="#impl-Readable-for-MISO_SPEC-2" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::spis0::psel::miso::<a class="struct" href="../spis0/psel/miso/struct.MISO_SPEC.html" title="struct nrf52840_pac::spis0::psel::miso::MISO_SPEC">MISO_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spis0/psel/miso/struct.R.html" title="struct nrf52840_pac::spis0::psel::miso::R">miso::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-512" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spis0/psel/miso.rs.html#142">source</a><a href="#associatedtype.Reader-512" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spis0/psel/miso/struct.R.html" title="struct nrf52840_pac::spis0::psel::miso::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-MOSI_SPEC-2" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spis0/psel/mosi.rs.html#141-143">source</a><a href="#impl-Readable-for-MOSI_SPEC-2" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::spis0::psel::mosi::<a class="struct" href="../spis0/psel/mosi/struct.MOSI_SPEC.html" title="struct nrf52840_pac::spis0::psel::mosi::MOSI_SPEC">MOSI_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spis0/psel/mosi/struct.R.html" title="struct nrf52840_pac::spis0::psel::mosi::R">mosi::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-513" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spis0/psel/mosi.rs.html#142">source</a><a href="#associatedtype.Reader-513" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spis0/psel/mosi/struct.R.html" title="struct nrf52840_pac::spis0::psel::mosi::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-SCK_SPEC-4" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spis0/psel/sck.rs.html#141-143">source</a><a href="#impl-Readable-for-SCK_SPEC-4" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::spis0::psel::sck::<a class="struct" href="../spis0/psel/sck/struct.SCK_SPEC.html" title="struct nrf52840_pac::spis0::psel::sck::SCK_SPEC">SCK_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spis0/psel/sck/struct.R.html" title="struct nrf52840_pac::spis0::psel::sck::R">sck::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-514" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spis0/psel/sck.rs.html#142">source</a><a href="#associatedtype.Reader-514" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spis0/psel/sck/struct.R.html" title="struct nrf52840_pac::spis0::psel::sck::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-AMOUNT_SPEC-5" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spis0/rxd/amount.rs.html#31-33">source</a><a href="#impl-Readable-for-AMOUNT_SPEC-5" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::spis0::rxd::amount::<a class="struct" href="../spis0/rxd/amount/struct.AMOUNT_SPEC.html" title="struct nrf52840_pac::spis0::rxd::amount::AMOUNT_SPEC">AMOUNT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spis0/rxd/amount/struct.R.html" title="struct nrf52840_pac::spis0::rxd::amount::R">amount::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-515" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spis0/rxd/amount.rs.html#32">source</a><a href="#associatedtype.Reader-515" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spis0/rxd/amount/struct.R.html" title="struct nrf52840_pac::spis0::rxd::amount::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-MAXCNT_SPEC-5" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spis0/rxd/maxcnt.rs.html#67-69">source</a><a href="#impl-Readable-for-MAXCNT_SPEC-5" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::spis0::rxd::maxcnt::<a class="struct" href="../spis0/rxd/maxcnt/struct.MAXCNT_SPEC.html" title="struct nrf52840_pac::spis0::rxd::maxcnt::MAXCNT_SPEC">MAXCNT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spis0/rxd/maxcnt/struct.R.html" title="struct nrf52840_pac::spis0::rxd::maxcnt::R">maxcnt::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-516" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spis0/rxd/maxcnt.rs.html#68">source</a><a href="#associatedtype.Reader-516" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spis0/rxd/maxcnt/struct.R.html" title="struct nrf52840_pac::spis0::rxd::maxcnt::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-PTR_SPEC-8" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spis0/rxd/ptr.rs.html#67-69">source</a><a href="#impl-Readable-for-PTR_SPEC-8" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::spis0::rxd::ptr::<a class="struct" href="../spis0/rxd/ptr/struct.PTR_SPEC.html" title="struct nrf52840_pac::spis0::rxd::ptr::PTR_SPEC">PTR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spis0/rxd/ptr/struct.R.html" title="struct nrf52840_pac::spis0::rxd::ptr::R">ptr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-517" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spis0/rxd/ptr.rs.html#68">source</a><a href="#associatedtype.Reader-517" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spis0/rxd/ptr/struct.R.html" title="struct nrf52840_pac::spis0::rxd::ptr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-SEMSTAT_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spis0/semstat.rs.html#83-85">source</a><a href="#impl-Readable-for-SEMSTAT_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../spis0/semstat/struct.SEMSTAT_SPEC.html" title="struct nrf52840_pac::spis0::semstat::SEMSTAT_SPEC">SEMSTAT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spis0/semstat/struct.R.html" title="struct nrf52840_pac::spis0::semstat::R">semstat::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-518" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spis0/semstat.rs.html#84">source</a><a href="#associatedtype.Reader-518" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spis0/semstat/struct.R.html" title="struct nrf52840_pac::spis0::semstat::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-SHORTS_SPEC-9" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spis0/shorts.rs.html#113-115">source</a><a href="#impl-Readable-for-SHORTS_SPEC-9" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::spis0::shorts::<a class="struct" href="../spis0/shorts/struct.SHORTS_SPEC.html" title="struct nrf52840_pac::spis0::shorts::SHORTS_SPEC">SHORTS_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spis0/shorts/struct.R.html" title="struct nrf52840_pac::spis0::shorts::R">shorts::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-519" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spis0/shorts.rs.html#114">source</a><a href="#associatedtype.Reader-519" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spis0/shorts/struct.R.html" title="struct nrf52840_pac::spis0::shorts::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-STATUS_SPEC-3" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spis0/status.rs.html#187-189">source</a><a href="#impl-Readable-for-STATUS_SPEC-3" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::spis0::status::<a class="struct" href="../spis0/status/struct.STATUS_SPEC.html" title="struct nrf52840_pac::spis0::status::STATUS_SPEC">STATUS_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spis0/status/struct.R.html" title="struct nrf52840_pac::spis0::status::R">status::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-520" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spis0/status.rs.html#188">source</a><a href="#associatedtype.Reader-520" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spis0/status/struct.R.html" title="struct nrf52840_pac::spis0::status::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-AMOUNT_SPEC-6" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spis0/txd/amount.rs.html#31-33">source</a><a href="#impl-Readable-for-AMOUNT_SPEC-6" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::spis0::txd::amount::<a class="struct" href="../spis0/txd/amount/struct.AMOUNT_SPEC.html" title="struct nrf52840_pac::spis0::txd::amount::AMOUNT_SPEC">AMOUNT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spis0/txd/amount/struct.R.html" title="struct nrf52840_pac::spis0::txd::amount::R">amount::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-521" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spis0/txd/amount.rs.html#32">source</a><a href="#associatedtype.Reader-521" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spis0/txd/amount/struct.R.html" title="struct nrf52840_pac::spis0::txd::amount::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-MAXCNT_SPEC-6" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spis0/txd/maxcnt.rs.html#67-69">source</a><a href="#impl-Readable-for-MAXCNT_SPEC-6" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::spis0::txd::maxcnt::<a class="struct" href="../spis0/txd/maxcnt/struct.MAXCNT_SPEC.html" title="struct nrf52840_pac::spis0::txd::maxcnt::MAXCNT_SPEC">MAXCNT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spis0/txd/maxcnt/struct.R.html" title="struct nrf52840_pac::spis0::txd::maxcnt::R">maxcnt::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-522" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spis0/txd/maxcnt.rs.html#68">source</a><a href="#associatedtype.Reader-522" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spis0/txd/maxcnt/struct.R.html" title="struct nrf52840_pac::spis0::txd::maxcnt::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-PTR_SPEC-9" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/spis0/txd/ptr.rs.html#67-69">source</a><a href="#impl-Readable-for-PTR_SPEC-9" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::spis0::txd::ptr::<a class="struct" href="../spis0/txd/ptr/struct.PTR_SPEC.html" title="struct nrf52840_pac::spis0::txd::ptr::PTR_SPEC">PTR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../spis0/txd/ptr/struct.R.html" title="struct nrf52840_pac::spis0::txd::ptr::R">ptr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-523" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/spis0/txd/ptr.rs.html#68">source</a><a href="#associatedtype.Reader-523" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../spis0/txd/ptr/struct.R.html" title="struct nrf52840_pac::spis0::txd::ptr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-UNUSED_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/swi0/unused.rs.html#22-24">source</a><a href="#impl-Readable-for-UNUSED_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../swi0/unused/struct.UNUSED_SPEC.html" title="struct nrf52840_pac::swi0::unused::UNUSED_SPEC">UNUSED_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../swi0/unused/struct.R.html" title="struct nrf52840_pac::swi0::unused::R">unused::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-524" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/swi0/unused.rs.html#23">source</a><a href="#associatedtype.Reader-524" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../swi0/unused/struct.R.html" title="struct nrf52840_pac::swi0::unused::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-A0_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/temp/a0.rs.html#67-69">source</a><a href="#impl-Readable-for-A0_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::temp::a0::<a class="struct" href="../temp/a0/struct.A0_SPEC.html" title="struct nrf52840_pac::temp::a0::A0_SPEC">A0_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../temp/a0/struct.R.html" title="struct nrf52840_pac::temp::a0::R">a0::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-525" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/temp/a0.rs.html#68">source</a><a href="#associatedtype.Reader-525" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../temp/a0/struct.R.html" title="struct nrf52840_pac::temp::a0::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-A1_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/temp/a1.rs.html#67-69">source</a><a href="#impl-Readable-for-A1_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::temp::a1::<a class="struct" href="../temp/a1/struct.A1_SPEC.html" title="struct nrf52840_pac::temp::a1::A1_SPEC">A1_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../temp/a1/struct.R.html" title="struct nrf52840_pac::temp::a1::R">a1::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-526" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/temp/a1.rs.html#68">source</a><a href="#associatedtype.Reader-526" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../temp/a1/struct.R.html" title="struct nrf52840_pac::temp::a1::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-A2_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/temp/a2.rs.html#67-69">source</a><a href="#impl-Readable-for-A2_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::temp::a2::<a class="struct" href="../temp/a2/struct.A2_SPEC.html" title="struct nrf52840_pac::temp::a2::A2_SPEC">A2_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../temp/a2/struct.R.html" title="struct nrf52840_pac::temp::a2::R">a2::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-527" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/temp/a2.rs.html#68">source</a><a href="#associatedtype.Reader-527" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../temp/a2/struct.R.html" title="struct nrf52840_pac::temp::a2::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-A3_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/temp/a3.rs.html#67-69">source</a><a href="#impl-Readable-for-A3_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::temp::a3::<a class="struct" href="../temp/a3/struct.A3_SPEC.html" title="struct nrf52840_pac::temp::a3::A3_SPEC">A3_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../temp/a3/struct.R.html" title="struct nrf52840_pac::temp::a3::R">a3::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-528" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/temp/a3.rs.html#68">source</a><a href="#associatedtype.Reader-528" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../temp/a3/struct.R.html" title="struct nrf52840_pac::temp::a3::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-A4_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/temp/a4.rs.html#67-69">source</a><a href="#impl-Readable-for-A4_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::temp::a4::<a class="struct" href="../temp/a4/struct.A4_SPEC.html" title="struct nrf52840_pac::temp::a4::A4_SPEC">A4_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../temp/a4/struct.R.html" title="struct nrf52840_pac::temp::a4::R">a4::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-529" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/temp/a4.rs.html#68">source</a><a href="#associatedtype.Reader-529" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../temp/a4/struct.R.html" title="struct nrf52840_pac::temp::a4::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-A5_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/temp/a5.rs.html#67-69">source</a><a href="#impl-Readable-for-A5_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::temp::a5::<a class="struct" href="../temp/a5/struct.A5_SPEC.html" title="struct nrf52840_pac::temp::a5::A5_SPEC">A5_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../temp/a5/struct.R.html" title="struct nrf52840_pac::temp::a5::R">a5::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-530" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/temp/a5.rs.html#68">source</a><a href="#associatedtype.Reader-530" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../temp/a5/struct.R.html" title="struct nrf52840_pac::temp::a5::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-B0_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/temp/b0.rs.html#67-69">source</a><a href="#impl-Readable-for-B0_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::temp::b0::<a class="struct" href="../temp/b0/struct.B0_SPEC.html" title="struct nrf52840_pac::temp::b0::B0_SPEC">B0_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../temp/b0/struct.R.html" title="struct nrf52840_pac::temp::b0::R">b0::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-531" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/temp/b0.rs.html#68">source</a><a href="#associatedtype.Reader-531" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../temp/b0/struct.R.html" title="struct nrf52840_pac::temp::b0::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-B1_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/temp/b1.rs.html#67-69">source</a><a href="#impl-Readable-for-B1_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::temp::b1::<a class="struct" href="../temp/b1/struct.B1_SPEC.html" title="struct nrf52840_pac::temp::b1::B1_SPEC">B1_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../temp/b1/struct.R.html" title="struct nrf52840_pac::temp::b1::R">b1::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-532" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/temp/b1.rs.html#68">source</a><a href="#associatedtype.Reader-532" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../temp/b1/struct.R.html" title="struct nrf52840_pac::temp::b1::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-B2_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/temp/b2.rs.html#67-69">source</a><a href="#impl-Readable-for-B2_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::temp::b2::<a class="struct" href="../temp/b2/struct.B2_SPEC.html" title="struct nrf52840_pac::temp::b2::B2_SPEC">B2_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../temp/b2/struct.R.html" title="struct nrf52840_pac::temp::b2::R">b2::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-533" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/temp/b2.rs.html#68">source</a><a href="#associatedtype.Reader-533" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../temp/b2/struct.R.html" title="struct nrf52840_pac::temp::b2::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-B3_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/temp/b3.rs.html#67-69">source</a><a href="#impl-Readable-for-B3_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::temp::b3::<a class="struct" href="../temp/b3/struct.B3_SPEC.html" title="struct nrf52840_pac::temp::b3::B3_SPEC">B3_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../temp/b3/struct.R.html" title="struct nrf52840_pac::temp::b3::R">b3::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-534" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/temp/b3.rs.html#68">source</a><a href="#associatedtype.Reader-534" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../temp/b3/struct.R.html" title="struct nrf52840_pac::temp::b3::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-B4_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/temp/b4.rs.html#67-69">source</a><a href="#impl-Readable-for-B4_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::temp::b4::<a class="struct" href="../temp/b4/struct.B4_SPEC.html" title="struct nrf52840_pac::temp::b4::B4_SPEC">B4_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../temp/b4/struct.R.html" title="struct nrf52840_pac::temp::b4::R">b4::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-535" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/temp/b4.rs.html#68">source</a><a href="#associatedtype.Reader-535" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../temp/b4/struct.R.html" title="struct nrf52840_pac::temp::b4::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-B5_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/temp/b5.rs.html#67-69">source</a><a href="#impl-Readable-for-B5_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::temp::b5::<a class="struct" href="../temp/b5/struct.B5_SPEC.html" title="struct nrf52840_pac::temp::b5::B5_SPEC">B5_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../temp/b5/struct.R.html" title="struct nrf52840_pac::temp::b5::R">b5::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-536" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/temp/b5.rs.html#68">source</a><a href="#associatedtype.Reader-536" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../temp/b5/struct.R.html" title="struct nrf52840_pac::temp::b5::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_DATARDY_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/temp/events_datardy.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_DATARDY_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../temp/events_datardy/struct.EVENTS_DATARDY_SPEC.html" title="struct nrf52840_pac::temp::events_datardy::EVENTS_DATARDY_SPEC">EVENTS_DATARDY_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../temp/events_datardy/struct.R.html" title="struct nrf52840_pac::temp::events_datardy::R">events_datardy::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-537" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/temp/events_datardy.rs.html#69">source</a><a href="#associatedtype.Reader-537" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../temp/events_datardy/struct.R.html" title="struct nrf52840_pac::temp::events_datardy::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENCLR_SPEC-23" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/temp/intenclr.rs.html#120-122">source</a><a href="#impl-Readable-for-INTENCLR_SPEC-23" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::temp::intenclr::<a class="struct" href="../temp/intenclr/struct.INTENCLR_SPEC.html" title="struct nrf52840_pac::temp::intenclr::INTENCLR_SPEC">INTENCLR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../temp/intenclr/struct.R.html" title="struct nrf52840_pac::temp::intenclr::R">intenclr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-538" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/temp/intenclr.rs.html#121">source</a><a href="#associatedtype.Reader-538" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../temp/intenclr/struct.R.html" title="struct nrf52840_pac::temp::intenclr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENSET_SPEC-23" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/temp/intenset.rs.html#120-122">source</a><a href="#impl-Readable-for-INTENSET_SPEC-23" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::temp::intenset::<a class="struct" href="../temp/intenset/struct.INTENSET_SPEC.html" title="struct nrf52840_pac::temp::intenset::INTENSET_SPEC">INTENSET_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../temp/intenset/struct.R.html" title="struct nrf52840_pac::temp::intenset::R">intenset::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-539" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/temp/intenset.rs.html#121">source</a><a href="#associatedtype.Reader-539" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../temp/intenset/struct.R.html" title="struct nrf52840_pac::temp::intenset::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-T0_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/temp/t0.rs.html#67-69">source</a><a href="#impl-Readable-for-T0_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::temp::t0::<a class="struct" href="../temp/t0/struct.T0_SPEC.html" title="struct nrf52840_pac::temp::t0::T0_SPEC">T0_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../temp/t0/struct.R.html" title="struct nrf52840_pac::temp::t0::R">t0::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-540" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/temp/t0.rs.html#68">source</a><a href="#associatedtype.Reader-540" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../temp/t0/struct.R.html" title="struct nrf52840_pac::temp::t0::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-T1_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/temp/t1.rs.html#67-69">source</a><a href="#impl-Readable-for-T1_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::temp::t1::<a class="struct" href="../temp/t1/struct.T1_SPEC.html" title="struct nrf52840_pac::temp::t1::T1_SPEC">T1_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../temp/t1/struct.R.html" title="struct nrf52840_pac::temp::t1::R">t1::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-541" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/temp/t1.rs.html#68">source</a><a href="#associatedtype.Reader-541" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../temp/t1/struct.R.html" title="struct nrf52840_pac::temp::t1::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-T2_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/temp/t2.rs.html#67-69">source</a><a href="#impl-Readable-for-T2_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::temp::t2::<a class="struct" href="../temp/t2/struct.T2_SPEC.html" title="struct nrf52840_pac::temp::t2::T2_SPEC">T2_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../temp/t2/struct.R.html" title="struct nrf52840_pac::temp::t2::R">t2::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-542" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/temp/t2.rs.html#68">source</a><a href="#associatedtype.Reader-542" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../temp/t2/struct.R.html" title="struct nrf52840_pac::temp::t2::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-T3_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/temp/t3.rs.html#67-69">source</a><a href="#impl-Readable-for-T3_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::temp::t3::<a class="struct" href="../temp/t3/struct.T3_SPEC.html" title="struct nrf52840_pac::temp::t3::T3_SPEC">T3_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../temp/t3/struct.R.html" title="struct nrf52840_pac::temp::t3::R">t3::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-543" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/temp/t3.rs.html#68">source</a><a href="#associatedtype.Reader-543" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../temp/t3/struct.R.html" title="struct nrf52840_pac::temp::t3::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-T4_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/temp/t4.rs.html#67-69">source</a><a href="#impl-Readable-for-T4_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::temp::t4::<a class="struct" href="../temp/t4/struct.T4_SPEC.html" title="struct nrf52840_pac::temp::t4::T4_SPEC">T4_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../temp/t4/struct.R.html" title="struct nrf52840_pac::temp::t4::R">t4::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-544" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/temp/t4.rs.html#68">source</a><a href="#associatedtype.Reader-544" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../temp/t4/struct.R.html" title="struct nrf52840_pac::temp::t4::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-TEMP_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/temp/temp.rs.html#31-33">source</a><a href="#impl-Readable-for-TEMP_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../temp/temp/struct.TEMP_SPEC.html" title="struct nrf52840_pac::temp::temp::TEMP_SPEC">TEMP_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../temp/temp/struct.R.html" title="struct nrf52840_pac::temp::temp::R">temp::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-545" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/temp/temp.rs.html#32">source</a><a href="#associatedtype.Reader-545" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../temp/temp/struct.R.html" title="struct nrf52840_pac::temp::temp::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-BITMODE_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/timer0/bitmode.rs.html#142-144">source</a><a href="#impl-Readable-for-BITMODE_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::timer0::bitmode::<a class="struct" href="../timer0/bitmode/struct.BITMODE_SPEC.html" title="struct nrf52840_pac::timer0::bitmode::BITMODE_SPEC">BITMODE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../timer0/bitmode/struct.R.html" title="struct nrf52840_pac::timer0::bitmode::R">bitmode::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-546" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/timer0/bitmode.rs.html#143">source</a><a href="#associatedtype.Reader-546" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../timer0/bitmode/struct.R.html" title="struct nrf52840_pac::timer0::bitmode::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-CC_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/timer0/cc.rs.html#67-69">source</a><a href="#impl-Readable-for-CC_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::timer0::cc::<a class="struct" href="../timer0/cc/struct.CC_SPEC.html" title="struct nrf52840_pac::timer0::cc::CC_SPEC">CC_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../timer0/cc/struct.R.html" title="struct nrf52840_pac::timer0::cc::R">cc::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-547" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/timer0/cc.rs.html#68">source</a><a href="#associatedtype.Reader-547" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../timer0/cc/struct.R.html" title="struct nrf52840_pac::timer0::cc::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_COMPARE_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/timer0/events_compare.rs.html#69-71">source</a><a href="#impl-Readable-for-EVENTS_COMPARE_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::timer0::events_compare::<a class="struct" href="../timer0/events_compare/struct.EVENTS_COMPARE_SPEC.html" title="struct nrf52840_pac::timer0::events_compare::EVENTS_COMPARE_SPEC">EVENTS_COMPARE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../timer0/events_compare/struct.R.html" title="struct nrf52840_pac::timer0::events_compare::R">events_compare::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-548" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/timer0/events_compare.rs.html#70">source</a><a href="#associatedtype.Reader-548" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../timer0/events_compare/struct.R.html" title="struct nrf52840_pac::timer0::events_compare::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENCLR_SPEC-24" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/timer0/intenclr.rs.html#345-347">source</a><a href="#impl-Readable-for-INTENCLR_SPEC-24" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::timer0::intenclr::<a class="struct" href="../timer0/intenclr/struct.INTENCLR_SPEC.html" title="struct nrf52840_pac::timer0::intenclr::INTENCLR_SPEC">INTENCLR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../timer0/intenclr/struct.R.html" title="struct nrf52840_pac::timer0::intenclr::R">intenclr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-549" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/timer0/intenclr.rs.html#346">source</a><a href="#associatedtype.Reader-549" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../timer0/intenclr/struct.R.html" title="struct nrf52840_pac::timer0::intenclr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENSET_SPEC-24" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/timer0/intenset.rs.html#345-347">source</a><a href="#impl-Readable-for-INTENSET_SPEC-24" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::timer0::intenset::<a class="struct" href="../timer0/intenset/struct.INTENSET_SPEC.html" title="struct nrf52840_pac::timer0::intenset::INTENSET_SPEC">INTENSET_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../timer0/intenset/struct.R.html" title="struct nrf52840_pac::timer0::intenset::R">intenset::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-550" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/timer0/intenset.rs.html#346">source</a><a href="#associatedtype.Reader-550" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../timer0/intenset/struct.R.html" title="struct nrf52840_pac::timer0::intenset::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-MODE_SPEC-6" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/timer0/mode.rs.html#128-130">source</a><a href="#impl-Readable-for-MODE_SPEC-6" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::timer0::mode::<a class="struct" href="../timer0/mode/struct.MODE_SPEC.html" title="struct nrf52840_pac::timer0::mode::MODE_SPEC">MODE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../timer0/mode/struct.R.html" title="struct nrf52840_pac::timer0::mode::R">mode::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-551" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/timer0/mode.rs.html#129">source</a><a href="#associatedtype.Reader-551" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../timer0/mode/struct.R.html" title="struct nrf52840_pac::timer0::mode::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-PRESCALER_SPEC-2" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/timer0/prescaler.rs.html#67-69">source</a><a href="#impl-Readable-for-PRESCALER_SPEC-2" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::timer0::prescaler::<a class="struct" href="../timer0/prescaler/struct.PRESCALER_SPEC.html" title="struct nrf52840_pac::timer0::prescaler::PRESCALER_SPEC">PRESCALER_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../timer0/prescaler/struct.R.html" title="struct nrf52840_pac::timer0::prescaler::R">prescaler::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-552" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/timer0/prescaler.rs.html#68">source</a><a href="#associatedtype.Reader-552" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../timer0/prescaler/struct.R.html" title="struct nrf52840_pac::timer0::prescaler::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-SHORTS_SPEC-10" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/timer0/shorts.rs.html#581-583">source</a><a href="#impl-Readable-for-SHORTS_SPEC-10" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::timer0::shorts::<a class="struct" href="../timer0/shorts/struct.SHORTS_SPEC.html" title="struct nrf52840_pac::timer0::shorts::SHORTS_SPEC">SHORTS_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../timer0/shorts/struct.R.html" title="struct nrf52840_pac::timer0::shorts::R">shorts::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-553" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/timer0/shorts.rs.html#582">source</a><a href="#associatedtype.Reader-553" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../timer0/shorts/struct.R.html" title="struct nrf52840_pac::timer0::shorts::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-BITMODE_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/timer3/bitmode.rs.html#142-144">source</a><a href="#impl-Readable-for-BITMODE_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::timer3::bitmode::<a class="struct" href="../timer3/bitmode/struct.BITMODE_SPEC.html" title="struct nrf52840_pac::timer3::bitmode::BITMODE_SPEC">BITMODE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../timer3/bitmode/struct.R.html" title="struct nrf52840_pac::timer3::bitmode::R">bitmode::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-554" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/timer3/bitmode.rs.html#143">source</a><a href="#associatedtype.Reader-554" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../timer3/bitmode/struct.R.html" title="struct nrf52840_pac::timer3::bitmode::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-CC_SPEC-2" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/timer3/cc.rs.html#67-69">source</a><a href="#impl-Readable-for-CC_SPEC-2" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::timer3::cc::<a class="struct" href="../timer3/cc/struct.CC_SPEC.html" title="struct nrf52840_pac::timer3::cc::CC_SPEC">CC_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../timer3/cc/struct.R.html" title="struct nrf52840_pac::timer3::cc::R">cc::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-555" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/timer3/cc.rs.html#68">source</a><a href="#associatedtype.Reader-555" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../timer3/cc/struct.R.html" title="struct nrf52840_pac::timer3::cc::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_COMPARE_SPEC-2" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/timer3/events_compare.rs.html#69-71">source</a><a href="#impl-Readable-for-EVENTS_COMPARE_SPEC-2" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::timer3::events_compare::<a class="struct" href="../timer3/events_compare/struct.EVENTS_COMPARE_SPEC.html" title="struct nrf52840_pac::timer3::events_compare::EVENTS_COMPARE_SPEC">EVENTS_COMPARE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../timer3/events_compare/struct.R.html" title="struct nrf52840_pac::timer3::events_compare::R">events_compare::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-556" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/timer3/events_compare.rs.html#70">source</a><a href="#associatedtype.Reader-556" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../timer3/events_compare/struct.R.html" title="struct nrf52840_pac::timer3::events_compare::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENCLR_SPEC-25" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/timer3/intenclr.rs.html#491-493">source</a><a href="#impl-Readable-for-INTENCLR_SPEC-25" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::timer3::intenclr::<a class="struct" href="../timer3/intenclr/struct.INTENCLR_SPEC.html" title="struct nrf52840_pac::timer3::intenclr::INTENCLR_SPEC">INTENCLR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../timer3/intenclr/struct.R.html" title="struct nrf52840_pac::timer3::intenclr::R">intenclr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-557" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/timer3/intenclr.rs.html#492">source</a><a href="#associatedtype.Reader-557" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../timer3/intenclr/struct.R.html" title="struct nrf52840_pac::timer3::intenclr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENSET_SPEC-25" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/timer3/intenset.rs.html#491-493">source</a><a href="#impl-Readable-for-INTENSET_SPEC-25" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::timer3::intenset::<a class="struct" href="../timer3/intenset/struct.INTENSET_SPEC.html" title="struct nrf52840_pac::timer3::intenset::INTENSET_SPEC">INTENSET_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../timer3/intenset/struct.R.html" title="struct nrf52840_pac::timer3::intenset::R">intenset::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-558" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/timer3/intenset.rs.html#492">source</a><a href="#associatedtype.Reader-558" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../timer3/intenset/struct.R.html" title="struct nrf52840_pac::timer3::intenset::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-MODE_SPEC-7" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/timer3/mode.rs.html#128-130">source</a><a href="#impl-Readable-for-MODE_SPEC-7" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::timer3::mode::<a class="struct" href="../timer3/mode/struct.MODE_SPEC.html" title="struct nrf52840_pac::timer3::mode::MODE_SPEC">MODE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../timer3/mode/struct.R.html" title="struct nrf52840_pac::timer3::mode::R">mode::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-559" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/timer3/mode.rs.html#129">source</a><a href="#associatedtype.Reader-559" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../timer3/mode/struct.R.html" title="struct nrf52840_pac::timer3::mode::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-PRESCALER_SPEC-3" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/timer3/prescaler.rs.html#67-69">source</a><a href="#impl-Readable-for-PRESCALER_SPEC-3" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::timer3::prescaler::<a class="struct" href="../timer3/prescaler/struct.PRESCALER_SPEC.html" title="struct nrf52840_pac::timer3::prescaler::PRESCALER_SPEC">PRESCALER_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../timer3/prescaler/struct.R.html" title="struct nrf52840_pac::timer3::prescaler::R">prescaler::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-560" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/timer3/prescaler.rs.html#68">source</a><a href="#associatedtype.Reader-560" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../timer3/prescaler/struct.R.html" title="struct nrf52840_pac::timer3::prescaler::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-SHORTS_SPEC-11" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/timer3/shorts.rs.html#845-847">source</a><a href="#impl-Readable-for-SHORTS_SPEC-11" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::timer3::shorts::<a class="struct" href="../timer3/shorts/struct.SHORTS_SPEC.html" title="struct nrf52840_pac::timer3::shorts::SHORTS_SPEC">SHORTS_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../timer3/shorts/struct.R.html" title="struct nrf52840_pac::timer3::shorts::R">shorts::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-561" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/timer3/shorts.rs.html#846">source</a><a href="#associatedtype.Reader-561" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../timer3/shorts/struct.R.html" title="struct nrf52840_pac::timer3::shorts::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ADDRESS_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twi0/address.rs.html#67-69">source</a><a href="#impl-Readable-for-ADDRESS_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twi0::address::<a class="struct" href="../twi0/address/struct.ADDRESS_SPEC.html" title="struct nrf52840_pac::twi0::address::ADDRESS_SPEC">ADDRESS_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twi0/address/struct.R.html" title="struct nrf52840_pac::twi0::address::R">address::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-562" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twi0/address.rs.html#68">source</a><a href="#associatedtype.Reader-562" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twi0/address/struct.R.html" title="struct nrf52840_pac::twi0::address::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ENABLE_SPEC-14" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twi0/enable.rs.html#115-117">source</a><a href="#impl-Readable-for-ENABLE_SPEC-14" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twi0::enable::<a class="struct" href="../twi0/enable/struct.ENABLE_SPEC.html" title="struct nrf52840_pac::twi0::enable::ENABLE_SPEC">ENABLE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twi0/enable/struct.R.html" title="struct nrf52840_pac::twi0::enable::R">enable::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-563" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twi0/enable.rs.html#116">source</a><a href="#associatedtype.Reader-563" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twi0/enable/struct.R.html" title="struct nrf52840_pac::twi0::enable::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ERRORSRC_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twi0/errorsrc.rs.html#233-235">source</a><a href="#impl-Readable-for-ERRORSRC_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twi0::errorsrc::<a class="struct" href="../twi0/errorsrc/struct.ERRORSRC_SPEC.html" title="struct nrf52840_pac::twi0::errorsrc::ERRORSRC_SPEC">ERRORSRC_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twi0/errorsrc/struct.R.html" title="struct nrf52840_pac::twi0::errorsrc::R">errorsrc::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-564" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twi0/errorsrc.rs.html#234">source</a><a href="#associatedtype.Reader-564" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twi0/errorsrc/struct.R.html" title="struct nrf52840_pac::twi0::errorsrc::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_BB_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twi0/events_bb.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_BB_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../twi0/events_bb/struct.EVENTS_BB_SPEC.html" title="struct nrf52840_pac::twi0::events_bb::EVENTS_BB_SPEC">EVENTS_BB_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twi0/events_bb/struct.R.html" title="struct nrf52840_pac::twi0::events_bb::R">events_bb::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-565" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twi0/events_bb.rs.html#68">source</a><a href="#associatedtype.Reader-565" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twi0/events_bb/struct.R.html" title="struct nrf52840_pac::twi0::events_bb::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_ERROR_SPEC-2" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twi0/events_error.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_ERROR_SPEC-2" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twi0::events_error::<a class="struct" href="../twi0/events_error/struct.EVENTS_ERROR_SPEC.html" title="struct nrf52840_pac::twi0::events_error::EVENTS_ERROR_SPEC">EVENTS_ERROR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twi0/events_error/struct.R.html" title="struct nrf52840_pac::twi0::events_error::R">events_error::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-566" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twi0/events_error.rs.html#68">source</a><a href="#associatedtype.Reader-566" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twi0/events_error/struct.R.html" title="struct nrf52840_pac::twi0::events_error::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_RXDREADY_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twi0/events_rxdready.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_RXDREADY_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../twi0/events_rxdready/struct.EVENTS_RXDREADY_SPEC.html" title="struct nrf52840_pac::twi0::events_rxdready::EVENTS_RXDREADY_SPEC">EVENTS_RXDREADY_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twi0/events_rxdready/struct.R.html" title="struct nrf52840_pac::twi0::events_rxdready::R">events_rxdready::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-567" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twi0/events_rxdready.rs.html#69">source</a><a href="#associatedtype.Reader-567" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twi0/events_rxdready/struct.R.html" title="struct nrf52840_pac::twi0::events_rxdready::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_STOPPED_SPEC-6" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twi0/events_stopped.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_STOPPED_SPEC-6" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twi0::events_stopped::<a class="struct" href="../twi0/events_stopped/struct.EVENTS_STOPPED_SPEC.html" title="struct nrf52840_pac::twi0::events_stopped::EVENTS_STOPPED_SPEC">EVENTS_STOPPED_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twi0/events_stopped/struct.R.html" title="struct nrf52840_pac::twi0::events_stopped::R">events_stopped::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-568" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twi0/events_stopped.rs.html#69">source</a><a href="#associatedtype.Reader-568" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twi0/events_stopped/struct.R.html" title="struct nrf52840_pac::twi0::events_stopped::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_SUSPENDED_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twi0/events_suspended.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_SUSPENDED_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twi0::events_suspended::<a class="struct" href="../twi0/events_suspended/struct.EVENTS_SUSPENDED_SPEC.html" title="struct nrf52840_pac::twi0::events_suspended::EVENTS_SUSPENDED_SPEC">EVENTS_SUSPENDED_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twi0/events_suspended/struct.R.html" title="struct nrf52840_pac::twi0::events_suspended::R">events_suspended::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-569" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twi0/events_suspended.rs.html#69">source</a><a href="#associatedtype.Reader-569" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twi0/events_suspended/struct.R.html" title="struct nrf52840_pac::twi0::events_suspended::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_TXDSENT_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twi0/events_txdsent.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_TXDSENT_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../twi0/events_txdsent/struct.EVENTS_TXDSENT_SPEC.html" title="struct nrf52840_pac::twi0::events_txdsent::EVENTS_TXDSENT_SPEC">EVENTS_TXDSENT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twi0/events_txdsent/struct.R.html" title="struct nrf52840_pac::twi0::events_txdsent::R">events_txdsent::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-570" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twi0/events_txdsent.rs.html#69">source</a><a href="#associatedtype.Reader-570" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twi0/events_txdsent/struct.R.html" title="struct nrf52840_pac::twi0::events_txdsent::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-FREQUENCY_SPEC-3" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twi0/frequency.rs.html#129-131">source</a><a href="#impl-Readable-for-FREQUENCY_SPEC-3" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twi0::frequency::<a class="struct" href="../twi0/frequency/struct.FREQUENCY_SPEC.html" title="struct nrf52840_pac::twi0::frequency::FREQUENCY_SPEC">FREQUENCY_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twi0/frequency/struct.R.html" title="struct nrf52840_pac::twi0::frequency::R">frequency::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-571" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twi0/frequency.rs.html#130">source</a><a href="#associatedtype.Reader-571" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twi0/frequency/struct.R.html" title="struct nrf52840_pac::twi0::frequency::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENCLR_SPEC-26" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twi0/intenclr.rs.html#455-457">source</a><a href="#impl-Readable-for-INTENCLR_SPEC-26" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twi0::intenclr::<a class="struct" href="../twi0/intenclr/struct.INTENCLR_SPEC.html" title="struct nrf52840_pac::twi0::intenclr::INTENCLR_SPEC">INTENCLR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twi0/intenclr/struct.R.html" title="struct nrf52840_pac::twi0::intenclr::R">intenclr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-572" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twi0/intenclr.rs.html#456">source</a><a href="#associatedtype.Reader-572" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twi0/intenclr/struct.R.html" title="struct nrf52840_pac::twi0::intenclr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENSET_SPEC-26" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twi0/intenset.rs.html#455-457">source</a><a href="#impl-Readable-for-INTENSET_SPEC-26" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twi0::intenset::<a class="struct" href="../twi0/intenset/struct.INTENSET_SPEC.html" title="struct nrf52840_pac::twi0::intenset::INTENSET_SPEC">INTENSET_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twi0/intenset/struct.R.html" title="struct nrf52840_pac::twi0::intenset::R">intenset::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-573" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twi0/intenset.rs.html#456">source</a><a href="#associatedtype.Reader-573" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twi0/intenset/struct.R.html" title="struct nrf52840_pac::twi0::intenset::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-SCL_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twi0/psel/scl.rs.html#141-143">source</a><a href="#impl-Readable-for-SCL_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twi0::psel::scl::<a class="struct" href="../twi0/psel/scl/struct.SCL_SPEC.html" title="struct nrf52840_pac::twi0::psel::scl::SCL_SPEC">SCL_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twi0/psel/scl/struct.R.html" title="struct nrf52840_pac::twi0::psel::scl::R">scl::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-574" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twi0/psel/scl.rs.html#142">source</a><a href="#associatedtype.Reader-574" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twi0/psel/scl/struct.R.html" title="struct nrf52840_pac::twi0::psel::scl::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-SDA_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twi0/psel/sda.rs.html#141-143">source</a><a href="#impl-Readable-for-SDA_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twi0::psel::sda::<a class="struct" href="../twi0/psel/sda/struct.SDA_SPEC.html" title="struct nrf52840_pac::twi0::psel::sda::SDA_SPEC">SDA_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twi0/psel/sda/struct.R.html" title="struct nrf52840_pac::twi0::psel::sda::R">sda::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-575" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twi0/psel/sda.rs.html#142">source</a><a href="#associatedtype.Reader-575" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twi0/psel/sda/struct.R.html" title="struct nrf52840_pac::twi0::psel::sda::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-RXD_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twi0/rxd.rs.html#31-33">source</a><a href="#impl-Readable-for-RXD_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twi0::rxd::<a class="struct" href="../twi0/rxd/struct.RXD_SPEC.html" title="struct nrf52840_pac::twi0::rxd::RXD_SPEC">RXD_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twi0/rxd/struct.R.html" title="struct nrf52840_pac::twi0::rxd::R">rxd::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-576" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twi0/rxd.rs.html#32">source</a><a href="#associatedtype.Reader-576" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twi0/rxd/struct.R.html" title="struct nrf52840_pac::twi0::rxd::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-SHORTS_SPEC-12" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twi0/shorts.rs.html#173-175">source</a><a href="#impl-Readable-for-SHORTS_SPEC-12" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twi0::shorts::<a class="struct" href="../twi0/shorts/struct.SHORTS_SPEC.html" title="struct nrf52840_pac::twi0::shorts::SHORTS_SPEC">SHORTS_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twi0/shorts/struct.R.html" title="struct nrf52840_pac::twi0::shorts::R">shorts::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-577" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twi0/shorts.rs.html#174">source</a><a href="#associatedtype.Reader-577" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twi0/shorts/struct.R.html" title="struct nrf52840_pac::twi0::shorts::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-TXD_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twi0/txd.rs.html#67-69">source</a><a href="#impl-Readable-for-TXD_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twi0::txd::<a class="struct" href="../twi0/txd/struct.TXD_SPEC.html" title="struct nrf52840_pac::twi0::txd::TXD_SPEC">TXD_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twi0/txd/struct.R.html" title="struct nrf52840_pac::twi0::txd::R">txd::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-578" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twi0/txd.rs.html#68">source</a><a href="#associatedtype.Reader-578" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twi0/txd/struct.R.html" title="struct nrf52840_pac::twi0::txd::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ADDRESS_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twim0/address.rs.html#67-69">source</a><a href="#impl-Readable-for-ADDRESS_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twim0::address::<a class="struct" href="../twim0/address/struct.ADDRESS_SPEC.html" title="struct nrf52840_pac::twim0::address::ADDRESS_SPEC">ADDRESS_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twim0/address/struct.R.html" title="struct nrf52840_pac::twim0::address::R">address::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-579" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twim0/address.rs.html#68">source</a><a href="#associatedtype.Reader-579" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twim0/address/struct.R.html" title="struct nrf52840_pac::twim0::address::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ENABLE_SPEC-15" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twim0/enable.rs.html#115-117">source</a><a href="#impl-Readable-for-ENABLE_SPEC-15" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twim0::enable::<a class="struct" href="../twim0/enable/struct.ENABLE_SPEC.html" title="struct nrf52840_pac::twim0::enable::ENABLE_SPEC">ENABLE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twim0/enable/struct.R.html" title="struct nrf52840_pac::twim0::enable::R">enable::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-580" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twim0/enable.rs.html#116">source</a><a href="#associatedtype.Reader-580" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twim0/enable/struct.R.html" title="struct nrf52840_pac::twim0::enable::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ERRORSRC_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twim0/errorsrc.rs.html#233-235">source</a><a href="#impl-Readable-for-ERRORSRC_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twim0::errorsrc::<a class="struct" href="../twim0/errorsrc/struct.ERRORSRC_SPEC.html" title="struct nrf52840_pac::twim0::errorsrc::ERRORSRC_SPEC">ERRORSRC_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twim0/errorsrc/struct.R.html" title="struct nrf52840_pac::twim0::errorsrc::R">errorsrc::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-581" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twim0/errorsrc.rs.html#234">source</a><a href="#associatedtype.Reader-581" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twim0/errorsrc/struct.R.html" title="struct nrf52840_pac::twim0::errorsrc::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_ERROR_SPEC-3" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twim0/events_error.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_ERROR_SPEC-3" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twim0::events_error::<a class="struct" href="../twim0/events_error/struct.EVENTS_ERROR_SPEC.html" title="struct nrf52840_pac::twim0::events_error::EVENTS_ERROR_SPEC">EVENTS_ERROR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twim0/events_error/struct.R.html" title="struct nrf52840_pac::twim0::events_error::R">events_error::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-582" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twim0/events_error.rs.html#68">source</a><a href="#associatedtype.Reader-582" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twim0/events_error/struct.R.html" title="struct nrf52840_pac::twim0::events_error::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_LASTRX_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twim0/events_lastrx.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_LASTRX_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../twim0/events_lastrx/struct.EVENTS_LASTRX_SPEC.html" title="struct nrf52840_pac::twim0::events_lastrx::EVENTS_LASTRX_SPEC">EVENTS_LASTRX_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twim0/events_lastrx/struct.R.html" title="struct nrf52840_pac::twim0::events_lastrx::R">events_lastrx::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-583" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twim0/events_lastrx.rs.html#68">source</a><a href="#associatedtype.Reader-583" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twim0/events_lastrx/struct.R.html" title="struct nrf52840_pac::twim0::events_lastrx::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_LASTTX_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twim0/events_lasttx.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_LASTTX_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../twim0/events_lasttx/struct.EVENTS_LASTTX_SPEC.html" title="struct nrf52840_pac::twim0::events_lasttx::EVENTS_LASTTX_SPEC">EVENTS_LASTTX_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twim0/events_lasttx/struct.R.html" title="struct nrf52840_pac::twim0::events_lasttx::R">events_lasttx::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-584" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twim0/events_lasttx.rs.html#68">source</a><a href="#associatedtype.Reader-584" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twim0/events_lasttx/struct.R.html" title="struct nrf52840_pac::twim0::events_lasttx::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_RXSTARTED_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twim0/events_rxstarted.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_RXSTARTED_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twim0::events_rxstarted::<a class="struct" href="../twim0/events_rxstarted/struct.EVENTS_RXSTARTED_SPEC.html" title="struct nrf52840_pac::twim0::events_rxstarted::EVENTS_RXSTARTED_SPEC">EVENTS_RXSTARTED_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twim0/events_rxstarted/struct.R.html" title="struct nrf52840_pac::twim0::events_rxstarted::R">events_rxstarted::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-585" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twim0/events_rxstarted.rs.html#69">source</a><a href="#associatedtype.Reader-585" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twim0/events_rxstarted/struct.R.html" title="struct nrf52840_pac::twim0::events_rxstarted::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_STOPPED_SPEC-7" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twim0/events_stopped.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_STOPPED_SPEC-7" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twim0::events_stopped::<a class="struct" href="../twim0/events_stopped/struct.EVENTS_STOPPED_SPEC.html" title="struct nrf52840_pac::twim0::events_stopped::EVENTS_STOPPED_SPEC">EVENTS_STOPPED_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twim0/events_stopped/struct.R.html" title="struct nrf52840_pac::twim0::events_stopped::R">events_stopped::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-586" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twim0/events_stopped.rs.html#69">source</a><a href="#associatedtype.Reader-586" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twim0/events_stopped/struct.R.html" title="struct nrf52840_pac::twim0::events_stopped::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_SUSPENDED_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twim0/events_suspended.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_SUSPENDED_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twim0::events_suspended::<a class="struct" href="../twim0/events_suspended/struct.EVENTS_SUSPENDED_SPEC.html" title="struct nrf52840_pac::twim0::events_suspended::EVENTS_SUSPENDED_SPEC">EVENTS_SUSPENDED_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twim0/events_suspended/struct.R.html" title="struct nrf52840_pac::twim0::events_suspended::R">events_suspended::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-587" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twim0/events_suspended.rs.html#69">source</a><a href="#associatedtype.Reader-587" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twim0/events_suspended/struct.R.html" title="struct nrf52840_pac::twim0::events_suspended::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_TXSTARTED_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twim0/events_txstarted.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_TXSTARTED_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twim0::events_txstarted::<a class="struct" href="../twim0/events_txstarted/struct.EVENTS_TXSTARTED_SPEC.html" title="struct nrf52840_pac::twim0::events_txstarted::EVENTS_TXSTARTED_SPEC">EVENTS_TXSTARTED_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twim0/events_txstarted/struct.R.html" title="struct nrf52840_pac::twim0::events_txstarted::R">events_txstarted::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-588" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twim0/events_txstarted.rs.html#69">source</a><a href="#associatedtype.Reader-588" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twim0/events_txstarted/struct.R.html" title="struct nrf52840_pac::twim0::events_txstarted::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-FREQUENCY_SPEC-4" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twim0/frequency.rs.html#129-131">source</a><a href="#impl-Readable-for-FREQUENCY_SPEC-4" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twim0::frequency::<a class="struct" href="../twim0/frequency/struct.FREQUENCY_SPEC.html" title="struct nrf52840_pac::twim0::frequency::FREQUENCY_SPEC">FREQUENCY_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twim0/frequency/struct.R.html" title="struct nrf52840_pac::twim0::frequency::R">frequency::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-589" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twim0/frequency.rs.html#130">source</a><a href="#associatedtype.Reader-589" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twim0/frequency/struct.R.html" title="struct nrf52840_pac::twim0::frequency::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTEN_SPEC-9" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twim0/inten.rs.html#473-475">source</a><a href="#impl-Readable-for-INTEN_SPEC-9" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twim0::inten::<a class="struct" href="../twim0/inten/struct.INTEN_SPEC.html" title="struct nrf52840_pac::twim0::inten::INTEN_SPEC">INTEN_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twim0/inten/struct.R.html" title="struct nrf52840_pac::twim0::inten::R">inten::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-590" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twim0/inten.rs.html#474">source</a><a href="#associatedtype.Reader-590" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twim0/inten/struct.R.html" title="struct nrf52840_pac::twim0::inten::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENCLR_SPEC-27" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twim0/intenclr.rs.html#522-524">source</a><a href="#impl-Readable-for-INTENCLR_SPEC-27" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twim0::intenclr::<a class="struct" href="../twim0/intenclr/struct.INTENCLR_SPEC.html" title="struct nrf52840_pac::twim0::intenclr::INTENCLR_SPEC">INTENCLR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twim0/intenclr/struct.R.html" title="struct nrf52840_pac::twim0::intenclr::R">intenclr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-591" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twim0/intenclr.rs.html#523">source</a><a href="#associatedtype.Reader-591" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twim0/intenclr/struct.R.html" title="struct nrf52840_pac::twim0::intenclr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENSET_SPEC-27" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twim0/intenset.rs.html#522-524">source</a><a href="#impl-Readable-for-INTENSET_SPEC-27" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twim0::intenset::<a class="struct" href="../twim0/intenset/struct.INTENSET_SPEC.html" title="struct nrf52840_pac::twim0::intenset::INTENSET_SPEC">INTENSET_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twim0/intenset/struct.R.html" title="struct nrf52840_pac::twim0::intenset::R">intenset::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-592" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twim0/intenset.rs.html#523">source</a><a href="#associatedtype.Reader-592" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twim0/intenset/struct.R.html" title="struct nrf52840_pac::twim0::intenset::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-SCL_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twim0/psel/scl.rs.html#141-143">source</a><a href="#impl-Readable-for-SCL_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twim0::psel::scl::<a class="struct" href="../twim0/psel/scl/struct.SCL_SPEC.html" title="struct nrf52840_pac::twim0::psel::scl::SCL_SPEC">SCL_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twim0/psel/scl/struct.R.html" title="struct nrf52840_pac::twim0::psel::scl::R">scl::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-593" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twim0/psel/scl.rs.html#142">source</a><a href="#associatedtype.Reader-593" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twim0/psel/scl/struct.R.html" title="struct nrf52840_pac::twim0::psel::scl::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-SDA_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twim0/psel/sda.rs.html#141-143">source</a><a href="#impl-Readable-for-SDA_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twim0::psel::sda::<a class="struct" href="../twim0/psel/sda/struct.SDA_SPEC.html" title="struct nrf52840_pac::twim0::psel::sda::SDA_SPEC">SDA_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twim0/psel/sda/struct.R.html" title="struct nrf52840_pac::twim0::psel::sda::R">sda::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-594" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twim0/psel/sda.rs.html#142">source</a><a href="#associatedtype.Reader-594" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twim0/psel/sda/struct.R.html" title="struct nrf52840_pac::twim0::psel::sda::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-AMOUNT_SPEC-7" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twim0/rxd/amount.rs.html#31-33">source</a><a href="#impl-Readable-for-AMOUNT_SPEC-7" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twim0::rxd::amount::<a class="struct" href="../twim0/rxd/amount/struct.AMOUNT_SPEC.html" title="struct nrf52840_pac::twim0::rxd::amount::AMOUNT_SPEC">AMOUNT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twim0/rxd/amount/struct.R.html" title="struct nrf52840_pac::twim0::rxd::amount::R">amount::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-595" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twim0/rxd/amount.rs.html#32">source</a><a href="#associatedtype.Reader-595" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twim0/rxd/amount/struct.R.html" title="struct nrf52840_pac::twim0::rxd::amount::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-LIST_SPEC-2" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twim0/rxd/list.rs.html#115-117">source</a><a href="#impl-Readable-for-LIST_SPEC-2" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twim0::rxd::list::<a class="struct" href="../twim0/rxd/list/struct.LIST_SPEC.html" title="struct nrf52840_pac::twim0::rxd::list::LIST_SPEC">LIST_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twim0/rxd/list/struct.R.html" title="struct nrf52840_pac::twim0::rxd::list::R">list::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-596" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twim0/rxd/list.rs.html#116">source</a><a href="#associatedtype.Reader-596" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twim0/rxd/list/struct.R.html" title="struct nrf52840_pac::twim0::rxd::list::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-MAXCNT_SPEC-7" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twim0/rxd/maxcnt.rs.html#67-69">source</a><a href="#impl-Readable-for-MAXCNT_SPEC-7" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twim0::rxd::maxcnt::<a class="struct" href="../twim0/rxd/maxcnt/struct.MAXCNT_SPEC.html" title="struct nrf52840_pac::twim0::rxd::maxcnt::MAXCNT_SPEC">MAXCNT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twim0/rxd/maxcnt/struct.R.html" title="struct nrf52840_pac::twim0::rxd::maxcnt::R">maxcnt::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-597" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twim0/rxd/maxcnt.rs.html#68">source</a><a href="#associatedtype.Reader-597" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twim0/rxd/maxcnt/struct.R.html" title="struct nrf52840_pac::twim0::rxd::maxcnt::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-PTR_SPEC-10" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twim0/rxd/ptr.rs.html#67-69">source</a><a href="#impl-Readable-for-PTR_SPEC-10" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twim0::rxd::ptr::<a class="struct" href="../twim0/rxd/ptr/struct.PTR_SPEC.html" title="struct nrf52840_pac::twim0::rxd::ptr::PTR_SPEC">PTR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twim0/rxd/ptr/struct.R.html" title="struct nrf52840_pac::twim0::rxd::ptr::R">ptr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-598" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twim0/rxd/ptr.rs.html#68">source</a><a href="#associatedtype.Reader-598" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twim0/rxd/ptr/struct.R.html" title="struct nrf52840_pac::twim0::rxd::ptr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-SHORTS_SPEC-13" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twim0/shorts.rs.html#417-419">source</a><a href="#impl-Readable-for-SHORTS_SPEC-13" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twim0::shorts::<a class="struct" href="../twim0/shorts/struct.SHORTS_SPEC.html" title="struct nrf52840_pac::twim0::shorts::SHORTS_SPEC">SHORTS_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twim0/shorts/struct.R.html" title="struct nrf52840_pac::twim0::shorts::R">shorts::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-599" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twim0/shorts.rs.html#418">source</a><a href="#associatedtype.Reader-599" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twim0/shorts/struct.R.html" title="struct nrf52840_pac::twim0::shorts::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-AMOUNT_SPEC-8" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twim0/txd/amount.rs.html#31-33">source</a><a href="#impl-Readable-for-AMOUNT_SPEC-8" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twim0::txd::amount::<a class="struct" href="../twim0/txd/amount/struct.AMOUNT_SPEC.html" title="struct nrf52840_pac::twim0::txd::amount::AMOUNT_SPEC">AMOUNT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twim0/txd/amount/struct.R.html" title="struct nrf52840_pac::twim0::txd::amount::R">amount::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-600" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twim0/txd/amount.rs.html#32">source</a><a href="#associatedtype.Reader-600" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twim0/txd/amount/struct.R.html" title="struct nrf52840_pac::twim0::txd::amount::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-LIST_SPEC-3" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twim0/txd/list.rs.html#115-117">source</a><a href="#impl-Readable-for-LIST_SPEC-3" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twim0::txd::list::<a class="struct" href="../twim0/txd/list/struct.LIST_SPEC.html" title="struct nrf52840_pac::twim0::txd::list::LIST_SPEC">LIST_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twim0/txd/list/struct.R.html" title="struct nrf52840_pac::twim0::txd::list::R">list::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-601" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twim0/txd/list.rs.html#116">source</a><a href="#associatedtype.Reader-601" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twim0/txd/list/struct.R.html" title="struct nrf52840_pac::twim0::txd::list::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-MAXCNT_SPEC-8" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twim0/txd/maxcnt.rs.html#67-69">source</a><a href="#impl-Readable-for-MAXCNT_SPEC-8" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twim0::txd::maxcnt::<a class="struct" href="../twim0/txd/maxcnt/struct.MAXCNT_SPEC.html" title="struct nrf52840_pac::twim0::txd::maxcnt::MAXCNT_SPEC">MAXCNT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twim0/txd/maxcnt/struct.R.html" title="struct nrf52840_pac::twim0::txd::maxcnt::R">maxcnt::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-602" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twim0/txd/maxcnt.rs.html#68">source</a><a href="#associatedtype.Reader-602" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twim0/txd/maxcnt/struct.R.html" title="struct nrf52840_pac::twim0::txd::maxcnt::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-PTR_SPEC-11" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twim0/txd/ptr.rs.html#67-69">source</a><a href="#impl-Readable-for-PTR_SPEC-11" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twim0::txd::ptr::<a class="struct" href="../twim0/txd/ptr/struct.PTR_SPEC.html" title="struct nrf52840_pac::twim0::txd::ptr::PTR_SPEC">PTR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twim0/txd/ptr/struct.R.html" title="struct nrf52840_pac::twim0::txd::ptr::R">ptr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-603" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twim0/txd/ptr.rs.html#68">source</a><a href="#associatedtype.Reader-603" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twim0/txd/ptr/struct.R.html" title="struct nrf52840_pac::twim0::txd::ptr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ADDRESS_SPEC-2" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twis0/address.rs.html#67-69">source</a><a href="#impl-Readable-for-ADDRESS_SPEC-2" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twis0::address::<a class="struct" href="../twis0/address/struct.ADDRESS_SPEC.html" title="struct nrf52840_pac::twis0::address::ADDRESS_SPEC">ADDRESS_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twis0/address/struct.R.html" title="struct nrf52840_pac::twis0::address::R">address::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-604" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twis0/address.rs.html#68">source</a><a href="#associatedtype.Reader-604" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twis0/address/struct.R.html" title="struct nrf52840_pac::twis0::address::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-CONFIG_SPEC-7" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twis0/config.rs.html#173-175">source</a><a href="#impl-Readable-for-CONFIG_SPEC-7" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twis0::config::<a class="struct" href="../twis0/config/struct.CONFIG_SPEC.html" title="struct nrf52840_pac::twis0::config::CONFIG_SPEC">CONFIG_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twis0/config/struct.R.html" title="struct nrf52840_pac::twis0::config::R">config::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-605" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twis0/config.rs.html#174">source</a><a href="#associatedtype.Reader-605" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twis0/config/struct.R.html" title="struct nrf52840_pac::twis0::config::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ENABLE_SPEC-16" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twis0/enable.rs.html#115-117">source</a><a href="#impl-Readable-for-ENABLE_SPEC-16" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twis0::enable::<a class="struct" href="../twis0/enable/struct.ENABLE_SPEC.html" title="struct nrf52840_pac::twis0::enable::ENABLE_SPEC">ENABLE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twis0/enable/struct.R.html" title="struct nrf52840_pac::twis0::enable::R">enable::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-606" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twis0/enable.rs.html#116">source</a><a href="#associatedtype.Reader-606" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twis0/enable/struct.R.html" title="struct nrf52840_pac::twis0::enable::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ERRORSRC_SPEC-2" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twis0/errorsrc.rs.html#233-235">source</a><a href="#impl-Readable-for-ERRORSRC_SPEC-2" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twis0::errorsrc::<a class="struct" href="../twis0/errorsrc/struct.ERRORSRC_SPEC.html" title="struct nrf52840_pac::twis0::errorsrc::ERRORSRC_SPEC">ERRORSRC_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twis0/errorsrc/struct.R.html" title="struct nrf52840_pac::twis0::errorsrc::R">errorsrc::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-607" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twis0/errorsrc.rs.html#234">source</a><a href="#associatedtype.Reader-607" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twis0/errorsrc/struct.R.html" title="struct nrf52840_pac::twis0::errorsrc::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_ERROR_SPEC-4" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twis0/events_error.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_ERROR_SPEC-4" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twis0::events_error::<a class="struct" href="../twis0/events_error/struct.EVENTS_ERROR_SPEC.html" title="struct nrf52840_pac::twis0::events_error::EVENTS_ERROR_SPEC">EVENTS_ERROR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twis0/events_error/struct.R.html" title="struct nrf52840_pac::twis0::events_error::R">events_error::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-608" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twis0/events_error.rs.html#68">source</a><a href="#associatedtype.Reader-608" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twis0/events_error/struct.R.html" title="struct nrf52840_pac::twis0::events_error::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_READ_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twis0/events_read.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_READ_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../twis0/events_read/struct.EVENTS_READ_SPEC.html" title="struct nrf52840_pac::twis0::events_read::EVENTS_READ_SPEC">EVENTS_READ_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twis0/events_read/struct.R.html" title="struct nrf52840_pac::twis0::events_read::R">events_read::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-609" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twis0/events_read.rs.html#68">source</a><a href="#associatedtype.Reader-609" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twis0/events_read/struct.R.html" title="struct nrf52840_pac::twis0::events_read::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_RXSTARTED_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twis0/events_rxstarted.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_RXSTARTED_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twis0::events_rxstarted::<a class="struct" href="../twis0/events_rxstarted/struct.EVENTS_RXSTARTED_SPEC.html" title="struct nrf52840_pac::twis0::events_rxstarted::EVENTS_RXSTARTED_SPEC">EVENTS_RXSTARTED_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twis0/events_rxstarted/struct.R.html" title="struct nrf52840_pac::twis0::events_rxstarted::R">events_rxstarted::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-610" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twis0/events_rxstarted.rs.html#69">source</a><a href="#associatedtype.Reader-610" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twis0/events_rxstarted/struct.R.html" title="struct nrf52840_pac::twis0::events_rxstarted::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_STOPPED_SPEC-8" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twis0/events_stopped.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_STOPPED_SPEC-8" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twis0::events_stopped::<a class="struct" href="../twis0/events_stopped/struct.EVENTS_STOPPED_SPEC.html" title="struct nrf52840_pac::twis0::events_stopped::EVENTS_STOPPED_SPEC">EVENTS_STOPPED_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twis0/events_stopped/struct.R.html" title="struct nrf52840_pac::twis0::events_stopped::R">events_stopped::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-611" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twis0/events_stopped.rs.html#69">source</a><a href="#associatedtype.Reader-611" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twis0/events_stopped/struct.R.html" title="struct nrf52840_pac::twis0::events_stopped::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_TXSTARTED_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twis0/events_txstarted.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_TXSTARTED_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twis0::events_txstarted::<a class="struct" href="../twis0/events_txstarted/struct.EVENTS_TXSTARTED_SPEC.html" title="struct nrf52840_pac::twis0::events_txstarted::EVENTS_TXSTARTED_SPEC">EVENTS_TXSTARTED_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twis0/events_txstarted/struct.R.html" title="struct nrf52840_pac::twis0::events_txstarted::R">events_txstarted::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-612" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twis0/events_txstarted.rs.html#69">source</a><a href="#associatedtype.Reader-612" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twis0/events_txstarted/struct.R.html" title="struct nrf52840_pac::twis0::events_txstarted::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_WRITE_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twis0/events_write.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_WRITE_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../twis0/events_write/struct.EVENTS_WRITE_SPEC.html" title="struct nrf52840_pac::twis0::events_write::EVENTS_WRITE_SPEC">EVENTS_WRITE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twis0/events_write/struct.R.html" title="struct nrf52840_pac::twis0::events_write::R">events_write::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-613" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twis0/events_write.rs.html#68">source</a><a href="#associatedtype.Reader-613" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twis0/events_write/struct.R.html" title="struct nrf52840_pac::twis0::events_write::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTEN_SPEC-10" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twis0/inten.rs.html#413-415">source</a><a href="#impl-Readable-for-INTEN_SPEC-10" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twis0::inten::<a class="struct" href="../twis0/inten/struct.INTEN_SPEC.html" title="struct nrf52840_pac::twis0::inten::INTEN_SPEC">INTEN_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twis0/inten/struct.R.html" title="struct nrf52840_pac::twis0::inten::R">inten::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-614" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twis0/inten.rs.html#414">source</a><a href="#associatedtype.Reader-614" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twis0/inten/struct.R.html" title="struct nrf52840_pac::twis0::inten::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENCLR_SPEC-28" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twis0/intenclr.rs.html#455-457">source</a><a href="#impl-Readable-for-INTENCLR_SPEC-28" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twis0::intenclr::<a class="struct" href="../twis0/intenclr/struct.INTENCLR_SPEC.html" title="struct nrf52840_pac::twis0::intenclr::INTENCLR_SPEC">INTENCLR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twis0/intenclr/struct.R.html" title="struct nrf52840_pac::twis0::intenclr::R">intenclr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-615" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twis0/intenclr.rs.html#456">source</a><a href="#associatedtype.Reader-615" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twis0/intenclr/struct.R.html" title="struct nrf52840_pac::twis0::intenclr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENSET_SPEC-28" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twis0/intenset.rs.html#455-457">source</a><a href="#impl-Readable-for-INTENSET_SPEC-28" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twis0::intenset::<a class="struct" href="../twis0/intenset/struct.INTENSET_SPEC.html" title="struct nrf52840_pac::twis0::intenset::INTENSET_SPEC">INTENSET_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twis0/intenset/struct.R.html" title="struct nrf52840_pac::twis0::intenset::R">intenset::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-616" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twis0/intenset.rs.html#456">source</a><a href="#associatedtype.Reader-616" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twis0/intenset/struct.R.html" title="struct nrf52840_pac::twis0::intenset::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-MATCH_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twis0/match_.rs.html#31-33">source</a><a href="#impl-Readable-for-MATCH_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../twis0/match_/struct.MATCH_SPEC.html" title="struct nrf52840_pac::twis0::match_::MATCH_SPEC">MATCH_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twis0/match_/struct.R.html" title="struct nrf52840_pac::twis0::match_::R">match_::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-617" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twis0/match_.rs.html#32">source</a><a href="#associatedtype.Reader-617" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twis0/match_/struct.R.html" title="struct nrf52840_pac::twis0::match_::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ORC_SPEC-2" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twis0/orc.rs.html#67-69">source</a><a href="#impl-Readable-for-ORC_SPEC-2" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twis0::orc::<a class="struct" href="../twis0/orc/struct.ORC_SPEC.html" title="struct nrf52840_pac::twis0::orc::ORC_SPEC">ORC_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twis0/orc/struct.R.html" title="struct nrf52840_pac::twis0::orc::R">orc::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-618" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twis0/orc.rs.html#68">source</a><a href="#associatedtype.Reader-618" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twis0/orc/struct.R.html" title="struct nrf52840_pac::twis0::orc::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-SCL_SPEC-2" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twis0/psel/scl.rs.html#141-143">source</a><a href="#impl-Readable-for-SCL_SPEC-2" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twis0::psel::scl::<a class="struct" href="../twis0/psel/scl/struct.SCL_SPEC.html" title="struct nrf52840_pac::twis0::psel::scl::SCL_SPEC">SCL_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twis0/psel/scl/struct.R.html" title="struct nrf52840_pac::twis0::psel::scl::R">scl::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-619" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twis0/psel/scl.rs.html#142">source</a><a href="#associatedtype.Reader-619" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twis0/psel/scl/struct.R.html" title="struct nrf52840_pac::twis0::psel::scl::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-SDA_SPEC-2" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twis0/psel/sda.rs.html#141-143">source</a><a href="#impl-Readable-for-SDA_SPEC-2" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twis0::psel::sda::<a class="struct" href="../twis0/psel/sda/struct.SDA_SPEC.html" title="struct nrf52840_pac::twis0::psel::sda::SDA_SPEC">SDA_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twis0/psel/sda/struct.R.html" title="struct nrf52840_pac::twis0::psel::sda::R">sda::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-620" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twis0/psel/sda.rs.html#142">source</a><a href="#associatedtype.Reader-620" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twis0/psel/sda/struct.R.html" title="struct nrf52840_pac::twis0::psel::sda::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-AMOUNT_SPEC-9" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twis0/rxd/amount.rs.html#31-33">source</a><a href="#impl-Readable-for-AMOUNT_SPEC-9" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twis0::rxd::amount::<a class="struct" href="../twis0/rxd/amount/struct.AMOUNT_SPEC.html" title="struct nrf52840_pac::twis0::rxd::amount::AMOUNT_SPEC">AMOUNT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twis0/rxd/amount/struct.R.html" title="struct nrf52840_pac::twis0::rxd::amount::R">amount::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-621" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twis0/rxd/amount.rs.html#32">source</a><a href="#associatedtype.Reader-621" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twis0/rxd/amount/struct.R.html" title="struct nrf52840_pac::twis0::rxd::amount::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-MAXCNT_SPEC-9" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twis0/rxd/maxcnt.rs.html#67-69">source</a><a href="#impl-Readable-for-MAXCNT_SPEC-9" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twis0::rxd::maxcnt::<a class="struct" href="../twis0/rxd/maxcnt/struct.MAXCNT_SPEC.html" title="struct nrf52840_pac::twis0::rxd::maxcnt::MAXCNT_SPEC">MAXCNT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twis0/rxd/maxcnt/struct.R.html" title="struct nrf52840_pac::twis0::rxd::maxcnt::R">maxcnt::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-622" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twis0/rxd/maxcnt.rs.html#68">source</a><a href="#associatedtype.Reader-622" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twis0/rxd/maxcnt/struct.R.html" title="struct nrf52840_pac::twis0::rxd::maxcnt::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-PTR_SPEC-12" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twis0/rxd/ptr.rs.html#67-69">source</a><a href="#impl-Readable-for-PTR_SPEC-12" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twis0::rxd::ptr::<a class="struct" href="../twis0/rxd/ptr/struct.PTR_SPEC.html" title="struct nrf52840_pac::twis0::rxd::ptr::PTR_SPEC">PTR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twis0/rxd/ptr/struct.R.html" title="struct nrf52840_pac::twis0::rxd::ptr::R">ptr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-623" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twis0/rxd/ptr.rs.html#68">source</a><a href="#associatedtype.Reader-623" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twis0/rxd/ptr/struct.R.html" title="struct nrf52840_pac::twis0::rxd::ptr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-SHORTS_SPEC-14" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twis0/shorts.rs.html#175-177">source</a><a href="#impl-Readable-for-SHORTS_SPEC-14" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twis0::shorts::<a class="struct" href="../twis0/shorts/struct.SHORTS_SPEC.html" title="struct nrf52840_pac::twis0::shorts::SHORTS_SPEC">SHORTS_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twis0/shorts/struct.R.html" title="struct nrf52840_pac::twis0::shorts::R">shorts::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-624" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twis0/shorts.rs.html#176">source</a><a href="#associatedtype.Reader-624" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twis0/shorts/struct.R.html" title="struct nrf52840_pac::twis0::shorts::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-AMOUNT_SPEC-10" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twis0/txd/amount.rs.html#31-33">source</a><a href="#impl-Readable-for-AMOUNT_SPEC-10" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twis0::txd::amount::<a class="struct" href="../twis0/txd/amount/struct.AMOUNT_SPEC.html" title="struct nrf52840_pac::twis0::txd::amount::AMOUNT_SPEC">AMOUNT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twis0/txd/amount/struct.R.html" title="struct nrf52840_pac::twis0::txd::amount::R">amount::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-625" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twis0/txd/amount.rs.html#32">source</a><a href="#associatedtype.Reader-625" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twis0/txd/amount/struct.R.html" title="struct nrf52840_pac::twis0::txd::amount::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-MAXCNT_SPEC-10" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twis0/txd/maxcnt.rs.html#67-69">source</a><a href="#impl-Readable-for-MAXCNT_SPEC-10" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twis0::txd::maxcnt::<a class="struct" href="../twis0/txd/maxcnt/struct.MAXCNT_SPEC.html" title="struct nrf52840_pac::twis0::txd::maxcnt::MAXCNT_SPEC">MAXCNT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twis0/txd/maxcnt/struct.R.html" title="struct nrf52840_pac::twis0::txd::maxcnt::R">maxcnt::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-626" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twis0/txd/maxcnt.rs.html#68">source</a><a href="#associatedtype.Reader-626" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twis0/txd/maxcnt/struct.R.html" title="struct nrf52840_pac::twis0::txd::maxcnt::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-PTR_SPEC-13" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/twis0/txd/ptr.rs.html#67-69">source</a><a href="#impl-Readable-for-PTR_SPEC-13" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::twis0::txd::ptr::<a class="struct" href="../twis0/txd/ptr/struct.PTR_SPEC.html" title="struct nrf52840_pac::twis0::txd::ptr::PTR_SPEC">PTR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../twis0/txd/ptr/struct.R.html" title="struct nrf52840_pac::twis0::txd::ptr::R">ptr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-627" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/twis0/txd/ptr.rs.html#68">source</a><a href="#associatedtype.Reader-627" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../twis0/txd/ptr/struct.R.html" title="struct nrf52840_pac::twis0::txd::ptr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-BAUDRATE_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uart0/baudrate.rs.html#324-326">source</a><a href="#impl-Readable-for-BAUDRATE_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::uart0::baudrate::<a class="struct" href="../uart0/baudrate/struct.BAUDRATE_SPEC.html" title="struct nrf52840_pac::uart0::baudrate::BAUDRATE_SPEC">BAUDRATE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uart0/baudrate/struct.R.html" title="struct nrf52840_pac::uart0::baudrate::R">baudrate::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-628" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uart0/baudrate.rs.html#325">source</a><a href="#associatedtype.Reader-628" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uart0/baudrate/struct.R.html" title="struct nrf52840_pac::uart0::baudrate::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-CONFIG_SPEC-8" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uart0/config.rs.html#175-177">source</a><a href="#impl-Readable-for-CONFIG_SPEC-8" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::uart0::config::<a class="struct" href="../uart0/config/struct.CONFIG_SPEC.html" title="struct nrf52840_pac::uart0::config::CONFIG_SPEC">CONFIG_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uart0/config/struct.R.html" title="struct nrf52840_pac::uart0::config::R">config::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-629" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uart0/config.rs.html#176">source</a><a href="#associatedtype.Reader-629" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uart0/config/struct.R.html" title="struct nrf52840_pac::uart0::config::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ENABLE_SPEC-17" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uart0/enable.rs.html#115-117">source</a><a href="#impl-Readable-for-ENABLE_SPEC-17" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::uart0::enable::<a class="struct" href="../uart0/enable/struct.ENABLE_SPEC.html" title="struct nrf52840_pac::uart0::enable::ENABLE_SPEC">ENABLE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uart0/enable/struct.R.html" title="struct nrf52840_pac::uart0::enable::R">enable::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-630" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uart0/enable.rs.html#116">source</a><a href="#associatedtype.Reader-630" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uart0/enable/struct.R.html" title="struct nrf52840_pac::uart0::enable::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ERRORSRC_SPEC-3" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uart0/errorsrc.rs.html#293-295">source</a><a href="#impl-Readable-for-ERRORSRC_SPEC-3" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::uart0::errorsrc::<a class="struct" href="../uart0/errorsrc/struct.ERRORSRC_SPEC.html" title="struct nrf52840_pac::uart0::errorsrc::ERRORSRC_SPEC">ERRORSRC_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uart0/errorsrc/struct.R.html" title="struct nrf52840_pac::uart0::errorsrc::R">errorsrc::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-631" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uart0/errorsrc.rs.html#294">source</a><a href="#associatedtype.Reader-631" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uart0/errorsrc/struct.R.html" title="struct nrf52840_pac::uart0::errorsrc::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_CTS_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uart0/events_cts.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_CTS_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::uart0::events_cts::<a class="struct" href="../uart0/events_cts/struct.EVENTS_CTS_SPEC.html" title="struct nrf52840_pac::uart0::events_cts::EVENTS_CTS_SPEC">EVENTS_CTS_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uart0/events_cts/struct.R.html" title="struct nrf52840_pac::uart0::events_cts::R">events_cts::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-632" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uart0/events_cts.rs.html#68">source</a><a href="#associatedtype.Reader-632" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uart0/events_cts/struct.R.html" title="struct nrf52840_pac::uart0::events_cts::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_ERROR_SPEC-5" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uart0/events_error.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_ERROR_SPEC-5" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::uart0::events_error::<a class="struct" href="../uart0/events_error/struct.EVENTS_ERROR_SPEC.html" title="struct nrf52840_pac::uart0::events_error::EVENTS_ERROR_SPEC">EVENTS_ERROR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uart0/events_error/struct.R.html" title="struct nrf52840_pac::uart0::events_error::R">events_error::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-633" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uart0/events_error.rs.html#68">source</a><a href="#associatedtype.Reader-633" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uart0/events_error/struct.R.html" title="struct nrf52840_pac::uart0::events_error::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_NCTS_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uart0/events_ncts.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_NCTS_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::uart0::events_ncts::<a class="struct" href="../uart0/events_ncts/struct.EVENTS_NCTS_SPEC.html" title="struct nrf52840_pac::uart0::events_ncts::EVENTS_NCTS_SPEC">EVENTS_NCTS_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uart0/events_ncts/struct.R.html" title="struct nrf52840_pac::uart0::events_ncts::R">events_ncts::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-634" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uart0/events_ncts.rs.html#68">source</a><a href="#associatedtype.Reader-634" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uart0/events_ncts/struct.R.html" title="struct nrf52840_pac::uart0::events_ncts::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_RXDRDY_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uart0/events_rxdrdy.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_RXDRDY_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::uart0::events_rxdrdy::<a class="struct" href="../uart0/events_rxdrdy/struct.EVENTS_RXDRDY_SPEC.html" title="struct nrf52840_pac::uart0::events_rxdrdy::EVENTS_RXDRDY_SPEC">EVENTS_RXDRDY_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uart0/events_rxdrdy/struct.R.html" title="struct nrf52840_pac::uart0::events_rxdrdy::R">events_rxdrdy::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-635" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uart0/events_rxdrdy.rs.html#68">source</a><a href="#associatedtype.Reader-635" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uart0/events_rxdrdy/struct.R.html" title="struct nrf52840_pac::uart0::events_rxdrdy::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_RXTO_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uart0/events_rxto.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_RXTO_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::uart0::events_rxto::<a class="struct" href="../uart0/events_rxto/struct.EVENTS_RXTO_SPEC.html" title="struct nrf52840_pac::uart0::events_rxto::EVENTS_RXTO_SPEC">EVENTS_RXTO_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uart0/events_rxto/struct.R.html" title="struct nrf52840_pac::uart0::events_rxto::R">events_rxto::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-636" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uart0/events_rxto.rs.html#68">source</a><a href="#associatedtype.Reader-636" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uart0/events_rxto/struct.R.html" title="struct nrf52840_pac::uart0::events_rxto::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_TXDRDY_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uart0/events_txdrdy.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_TXDRDY_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::uart0::events_txdrdy::<a class="struct" href="../uart0/events_txdrdy/struct.EVENTS_TXDRDY_SPEC.html" title="struct nrf52840_pac::uart0::events_txdrdy::EVENTS_TXDRDY_SPEC">EVENTS_TXDRDY_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uart0/events_txdrdy/struct.R.html" title="struct nrf52840_pac::uart0::events_txdrdy::R">events_txdrdy::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-637" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uart0/events_txdrdy.rs.html#68">source</a><a href="#associatedtype.Reader-637" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uart0/events_txdrdy/struct.R.html" title="struct nrf52840_pac::uart0::events_txdrdy::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENCLR_SPEC-29" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uart0/intenclr.rs.html#455-457">source</a><a href="#impl-Readable-for-INTENCLR_SPEC-29" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::uart0::intenclr::<a class="struct" href="../uart0/intenclr/struct.INTENCLR_SPEC.html" title="struct nrf52840_pac::uart0::intenclr::INTENCLR_SPEC">INTENCLR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uart0/intenclr/struct.R.html" title="struct nrf52840_pac::uart0::intenclr::R">intenclr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-638" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uart0/intenclr.rs.html#456">source</a><a href="#associatedtype.Reader-638" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uart0/intenclr/struct.R.html" title="struct nrf52840_pac::uart0::intenclr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENSET_SPEC-29" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uart0/intenset.rs.html#455-457">source</a><a href="#impl-Readable-for-INTENSET_SPEC-29" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::uart0::intenset::<a class="struct" href="../uart0/intenset/struct.INTENSET_SPEC.html" title="struct nrf52840_pac::uart0::intenset::INTENSET_SPEC">INTENSET_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uart0/intenset/struct.R.html" title="struct nrf52840_pac::uart0::intenset::R">intenset::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-639" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uart0/intenset.rs.html#456">source</a><a href="#associatedtype.Reader-639" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uart0/intenset/struct.R.html" title="struct nrf52840_pac::uart0::intenset::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-CTS_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uart0/psel/cts.rs.html#141-143">source</a><a href="#impl-Readable-for-CTS_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::uart0::psel::cts::<a class="struct" href="../uart0/psel/cts/struct.CTS_SPEC.html" title="struct nrf52840_pac::uart0::psel::cts::CTS_SPEC">CTS_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uart0/psel/cts/struct.R.html" title="struct nrf52840_pac::uart0::psel::cts::R">cts::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-640" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uart0/psel/cts.rs.html#142">source</a><a href="#associatedtype.Reader-640" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uart0/psel/cts/struct.R.html" title="struct nrf52840_pac::uart0::psel::cts::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-RTS_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uart0/psel/rts.rs.html#141-143">source</a><a href="#impl-Readable-for-RTS_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::uart0::psel::rts::<a class="struct" href="../uart0/psel/rts/struct.RTS_SPEC.html" title="struct nrf52840_pac::uart0::psel::rts::RTS_SPEC">RTS_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uart0/psel/rts/struct.R.html" title="struct nrf52840_pac::uart0::psel::rts::R">rts::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-641" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uart0/psel/rts.rs.html#142">source</a><a href="#associatedtype.Reader-641" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uart0/psel/rts/struct.R.html" title="struct nrf52840_pac::uart0::psel::rts::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-RXD_SPEC-2" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uart0/psel/rxd.rs.html#141-143">source</a><a href="#impl-Readable-for-RXD_SPEC-2" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::uart0::psel::rxd::<a class="struct" href="../uart0/psel/rxd/struct.RXD_SPEC.html" title="struct nrf52840_pac::uart0::psel::rxd::RXD_SPEC">RXD_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uart0/psel/rxd/struct.R.html" title="struct nrf52840_pac::uart0::psel::rxd::R">rxd::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-642" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uart0/psel/rxd.rs.html#142">source</a><a href="#associatedtype.Reader-642" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uart0/psel/rxd/struct.R.html" title="struct nrf52840_pac::uart0::psel::rxd::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-TXD_SPEC-2" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uart0/psel/txd.rs.html#141-143">source</a><a href="#impl-Readable-for-TXD_SPEC-2" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::uart0::psel::txd::<a class="struct" href="../uart0/psel/txd/struct.TXD_SPEC.html" title="struct nrf52840_pac::uart0::psel::txd::TXD_SPEC">TXD_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uart0/psel/txd/struct.R.html" title="struct nrf52840_pac::uart0::psel::txd::R">txd::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-643" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uart0/psel/txd.rs.html#142">source</a><a href="#associatedtype.Reader-643" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uart0/psel/txd/struct.R.html" title="struct nrf52840_pac::uart0::psel::txd::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-RXD_SPEC-3" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uart0/rxd.rs.html#31-33">source</a><a href="#impl-Readable-for-RXD_SPEC-3" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::uart0::rxd::<a class="struct" href="../uart0/rxd/struct.RXD_SPEC.html" title="struct nrf52840_pac::uart0::rxd::RXD_SPEC">RXD_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uart0/rxd/struct.R.html" title="struct nrf52840_pac::uart0::rxd::R">rxd::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-644" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uart0/rxd.rs.html#32">source</a><a href="#associatedtype.Reader-644" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uart0/rxd/struct.R.html" title="struct nrf52840_pac::uart0::rxd::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-SHORTS_SPEC-15" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uart0/shorts.rs.html#173-175">source</a><a href="#impl-Readable-for-SHORTS_SPEC-15" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::uart0::shorts::<a class="struct" href="../uart0/shorts/struct.SHORTS_SPEC.html" title="struct nrf52840_pac::uart0::shorts::SHORTS_SPEC">SHORTS_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uart0/shorts/struct.R.html" title="struct nrf52840_pac::uart0::shorts::R">shorts::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-645" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uart0/shorts.rs.html#174">source</a><a href="#associatedtype.Reader-645" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uart0/shorts/struct.R.html" title="struct nrf52840_pac::uart0::shorts::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-BAUDRATE_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/baudrate.rs.html#324-326">source</a><a href="#impl-Readable-for-BAUDRATE_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::uarte0::baudrate::<a class="struct" href="../uarte0/baudrate/struct.BAUDRATE_SPEC.html" title="struct nrf52840_pac::uarte0::baudrate::BAUDRATE_SPEC">BAUDRATE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uarte0/baudrate/struct.R.html" title="struct nrf52840_pac::uarte0::baudrate::R">baudrate::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-646" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/baudrate.rs.html#325">source</a><a href="#associatedtype.Reader-646" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uarte0/baudrate/struct.R.html" title="struct nrf52840_pac::uarte0::baudrate::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-CONFIG_SPEC-9" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/config.rs.html#235-237">source</a><a href="#impl-Readable-for-CONFIG_SPEC-9" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::uarte0::config::<a class="struct" href="../uarte0/config/struct.CONFIG_SPEC.html" title="struct nrf52840_pac::uarte0::config::CONFIG_SPEC">CONFIG_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uarte0/config/struct.R.html" title="struct nrf52840_pac::uarte0::config::R">config::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-647" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/config.rs.html#236">source</a><a href="#associatedtype.Reader-647" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uarte0/config/struct.R.html" title="struct nrf52840_pac::uarte0::config::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ENABLE_SPEC-18" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/enable.rs.html#115-117">source</a><a href="#impl-Readable-for-ENABLE_SPEC-18" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::uarte0::enable::<a class="struct" href="../uarte0/enable/struct.ENABLE_SPEC.html" title="struct nrf52840_pac::uarte0::enable::ENABLE_SPEC">ENABLE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uarte0/enable/struct.R.html" title="struct nrf52840_pac::uarte0::enable::R">enable::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-648" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/enable.rs.html#116">source</a><a href="#associatedtype.Reader-648" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uarte0/enable/struct.R.html" title="struct nrf52840_pac::uarte0::enable::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ERRORSRC_SPEC-4" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/errorsrc.rs.html#293-295">source</a><a href="#impl-Readable-for-ERRORSRC_SPEC-4" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::uarte0::errorsrc::<a class="struct" href="../uarte0/errorsrc/struct.ERRORSRC_SPEC.html" title="struct nrf52840_pac::uarte0::errorsrc::ERRORSRC_SPEC">ERRORSRC_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uarte0/errorsrc/struct.R.html" title="struct nrf52840_pac::uarte0::errorsrc::R">errorsrc::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-649" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/errorsrc.rs.html#294">source</a><a href="#associatedtype.Reader-649" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uarte0/errorsrc/struct.R.html" title="struct nrf52840_pac::uarte0::errorsrc::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_CTS_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/events_cts.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_CTS_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::uarte0::events_cts::<a class="struct" href="../uarte0/events_cts/struct.EVENTS_CTS_SPEC.html" title="struct nrf52840_pac::uarte0::events_cts::EVENTS_CTS_SPEC">EVENTS_CTS_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uarte0/events_cts/struct.R.html" title="struct nrf52840_pac::uarte0::events_cts::R">events_cts::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-650" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/events_cts.rs.html#68">source</a><a href="#associatedtype.Reader-650" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uarte0/events_cts/struct.R.html" title="struct nrf52840_pac::uarte0::events_cts::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_ENDRX_SPEC-3" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/events_endrx.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_ENDRX_SPEC-3" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::uarte0::events_endrx::<a class="struct" href="../uarte0/events_endrx/struct.EVENTS_ENDRX_SPEC.html" title="struct nrf52840_pac::uarte0::events_endrx::EVENTS_ENDRX_SPEC">EVENTS_ENDRX_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uarte0/events_endrx/struct.R.html" title="struct nrf52840_pac::uarte0::events_endrx::R">events_endrx::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-651" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/events_endrx.rs.html#68">source</a><a href="#associatedtype.Reader-651" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uarte0/events_endrx/struct.R.html" title="struct nrf52840_pac::uarte0::events_endrx::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_ENDTX_SPEC-2" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/events_endtx.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_ENDTX_SPEC-2" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::uarte0::events_endtx::<a class="struct" href="../uarte0/events_endtx/struct.EVENTS_ENDTX_SPEC.html" title="struct nrf52840_pac::uarte0::events_endtx::EVENTS_ENDTX_SPEC">EVENTS_ENDTX_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uarte0/events_endtx/struct.R.html" title="struct nrf52840_pac::uarte0::events_endtx::R">events_endtx::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-652" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/events_endtx.rs.html#68">source</a><a href="#associatedtype.Reader-652" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uarte0/events_endtx/struct.R.html" title="struct nrf52840_pac::uarte0::events_endtx::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_ERROR_SPEC-6" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/events_error.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_ERROR_SPEC-6" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::uarte0::events_error::<a class="struct" href="../uarte0/events_error/struct.EVENTS_ERROR_SPEC.html" title="struct nrf52840_pac::uarte0::events_error::EVENTS_ERROR_SPEC">EVENTS_ERROR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uarte0/events_error/struct.R.html" title="struct nrf52840_pac::uarte0::events_error::R">events_error::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-653" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/events_error.rs.html#68">source</a><a href="#associatedtype.Reader-653" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uarte0/events_error/struct.R.html" title="struct nrf52840_pac::uarte0::events_error::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_NCTS_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/events_ncts.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_NCTS_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::uarte0::events_ncts::<a class="struct" href="../uarte0/events_ncts/struct.EVENTS_NCTS_SPEC.html" title="struct nrf52840_pac::uarte0::events_ncts::EVENTS_NCTS_SPEC">EVENTS_NCTS_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uarte0/events_ncts/struct.R.html" title="struct nrf52840_pac::uarte0::events_ncts::R">events_ncts::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-654" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/events_ncts.rs.html#68">source</a><a href="#associatedtype.Reader-654" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uarte0/events_ncts/struct.R.html" title="struct nrf52840_pac::uarte0::events_ncts::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_RXDRDY_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/events_rxdrdy.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_RXDRDY_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::uarte0::events_rxdrdy::<a class="struct" href="../uarte0/events_rxdrdy/struct.EVENTS_RXDRDY_SPEC.html" title="struct nrf52840_pac::uarte0::events_rxdrdy::EVENTS_RXDRDY_SPEC">EVENTS_RXDRDY_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uarte0/events_rxdrdy/struct.R.html" title="struct nrf52840_pac::uarte0::events_rxdrdy::R">events_rxdrdy::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-655" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/events_rxdrdy.rs.html#68">source</a><a href="#associatedtype.Reader-655" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uarte0/events_rxdrdy/struct.R.html" title="struct nrf52840_pac::uarte0::events_rxdrdy::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_RXSTARTED_SPEC-2" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/events_rxstarted.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_RXSTARTED_SPEC-2" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::uarte0::events_rxstarted::<a class="struct" href="../uarte0/events_rxstarted/struct.EVENTS_RXSTARTED_SPEC.html" title="struct nrf52840_pac::uarte0::events_rxstarted::EVENTS_RXSTARTED_SPEC">EVENTS_RXSTARTED_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uarte0/events_rxstarted/struct.R.html" title="struct nrf52840_pac::uarte0::events_rxstarted::R">events_rxstarted::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-656" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/events_rxstarted.rs.html#69">source</a><a href="#associatedtype.Reader-656" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uarte0/events_rxstarted/struct.R.html" title="struct nrf52840_pac::uarte0::events_rxstarted::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_RXTO_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/events_rxto.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_RXTO_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::uarte0::events_rxto::<a class="struct" href="../uarte0/events_rxto/struct.EVENTS_RXTO_SPEC.html" title="struct nrf52840_pac::uarte0::events_rxto::EVENTS_RXTO_SPEC">EVENTS_RXTO_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uarte0/events_rxto/struct.R.html" title="struct nrf52840_pac::uarte0::events_rxto::R">events_rxto::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-657" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/events_rxto.rs.html#68">source</a><a href="#associatedtype.Reader-657" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uarte0/events_rxto/struct.R.html" title="struct nrf52840_pac::uarte0::events_rxto::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_TXDRDY_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/events_txdrdy.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_TXDRDY_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::uarte0::events_txdrdy::<a class="struct" href="../uarte0/events_txdrdy/struct.EVENTS_TXDRDY_SPEC.html" title="struct nrf52840_pac::uarte0::events_txdrdy::EVENTS_TXDRDY_SPEC">EVENTS_TXDRDY_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uarte0/events_txdrdy/struct.R.html" title="struct nrf52840_pac::uarte0::events_txdrdy::R">events_txdrdy::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-658" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/events_txdrdy.rs.html#68">source</a><a href="#associatedtype.Reader-658" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uarte0/events_txdrdy/struct.R.html" title="struct nrf52840_pac::uarte0::events_txdrdy::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_TXSTARTED_SPEC-2" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/events_txstarted.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_TXSTARTED_SPEC-2" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::uarte0::events_txstarted::<a class="struct" href="../uarte0/events_txstarted/struct.EVENTS_TXSTARTED_SPEC.html" title="struct nrf52840_pac::uarte0::events_txstarted::EVENTS_TXSTARTED_SPEC">EVENTS_TXSTARTED_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uarte0/events_txstarted/struct.R.html" title="struct nrf52840_pac::uarte0::events_txstarted::R">events_txstarted::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-659" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/events_txstarted.rs.html#69">source</a><a href="#associatedtype.Reader-659" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uarte0/events_txstarted/struct.R.html" title="struct nrf52840_pac::uarte0::events_txstarted::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_TXSTOPPED_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/events_txstopped.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_TXSTOPPED_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../uarte0/events_txstopped/struct.EVENTS_TXSTOPPED_SPEC.html" title="struct nrf52840_pac::uarte0::events_txstopped::EVENTS_TXSTOPPED_SPEC">EVENTS_TXSTOPPED_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uarte0/events_txstopped/struct.R.html" title="struct nrf52840_pac::uarte0::events_txstopped::R">events_txstopped::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-660" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/events_txstopped.rs.html#69">source</a><a href="#associatedtype.Reader-660" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uarte0/events_txstopped/struct.R.html" title="struct nrf52840_pac::uarte0::events_txstopped::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTEN_SPEC-11" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/inten.rs.html#713-715">source</a><a href="#impl-Readable-for-INTEN_SPEC-11" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::uarte0::inten::<a class="struct" href="../uarte0/inten/struct.INTEN_SPEC.html" title="struct nrf52840_pac::uarte0::inten::INTEN_SPEC">INTEN_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uarte0/inten/struct.R.html" title="struct nrf52840_pac::uarte0::inten::R">inten::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-661" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/inten.rs.html#714">source</a><a href="#associatedtype.Reader-661" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uarte0/inten/struct.R.html" title="struct nrf52840_pac::uarte0::inten::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENCLR_SPEC-30" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/intenclr.rs.html#790-792">source</a><a href="#impl-Readable-for-INTENCLR_SPEC-30" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::uarte0::intenclr::<a class="struct" href="../uarte0/intenclr/struct.INTENCLR_SPEC.html" title="struct nrf52840_pac::uarte0::intenclr::INTENCLR_SPEC">INTENCLR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uarte0/intenclr/struct.R.html" title="struct nrf52840_pac::uarte0::intenclr::R">intenclr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-662" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/intenclr.rs.html#791">source</a><a href="#associatedtype.Reader-662" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uarte0/intenclr/struct.R.html" title="struct nrf52840_pac::uarte0::intenclr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENSET_SPEC-30" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/intenset.rs.html#790-792">source</a><a href="#impl-Readable-for-INTENSET_SPEC-30" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::uarte0::intenset::<a class="struct" href="../uarte0/intenset/struct.INTENSET_SPEC.html" title="struct nrf52840_pac::uarte0::intenset::INTENSET_SPEC">INTENSET_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uarte0/intenset/struct.R.html" title="struct nrf52840_pac::uarte0::intenset::R">intenset::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-663" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/intenset.rs.html#791">source</a><a href="#associatedtype.Reader-663" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uarte0/intenset/struct.R.html" title="struct nrf52840_pac::uarte0::intenset::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-CTS_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/psel/cts.rs.html#141-143">source</a><a href="#impl-Readable-for-CTS_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::uarte0::psel::cts::<a class="struct" href="../uarte0/psel/cts/struct.CTS_SPEC.html" title="struct nrf52840_pac::uarte0::psel::cts::CTS_SPEC">CTS_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uarte0/psel/cts/struct.R.html" title="struct nrf52840_pac::uarte0::psel::cts::R">cts::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-664" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/psel/cts.rs.html#142">source</a><a href="#associatedtype.Reader-664" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uarte0/psel/cts/struct.R.html" title="struct nrf52840_pac::uarte0::psel::cts::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-RTS_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/psel/rts.rs.html#141-143">source</a><a href="#impl-Readable-for-RTS_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::uarte0::psel::rts::<a class="struct" href="../uarte0/psel/rts/struct.RTS_SPEC.html" title="struct nrf52840_pac::uarte0::psel::rts::RTS_SPEC">RTS_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uarte0/psel/rts/struct.R.html" title="struct nrf52840_pac::uarte0::psel::rts::R">rts::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-665" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/psel/rts.rs.html#142">source</a><a href="#associatedtype.Reader-665" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uarte0/psel/rts/struct.R.html" title="struct nrf52840_pac::uarte0::psel::rts::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-RXD_SPEC-4" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/psel/rxd.rs.html#141-143">source</a><a href="#impl-Readable-for-RXD_SPEC-4" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::uarte0::psel::rxd::<a class="struct" href="../uarte0/psel/rxd/struct.RXD_SPEC.html" title="struct nrf52840_pac::uarte0::psel::rxd::RXD_SPEC">RXD_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uarte0/psel/rxd/struct.R.html" title="struct nrf52840_pac::uarte0::psel::rxd::R">rxd::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-666" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/psel/rxd.rs.html#142">source</a><a href="#associatedtype.Reader-666" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uarte0/psel/rxd/struct.R.html" title="struct nrf52840_pac::uarte0::psel::rxd::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-TXD_SPEC-3" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/psel/txd.rs.html#141-143">source</a><a href="#impl-Readable-for-TXD_SPEC-3" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::uarte0::psel::txd::<a class="struct" href="../uarte0/psel/txd/struct.TXD_SPEC.html" title="struct nrf52840_pac::uarte0::psel::txd::TXD_SPEC">TXD_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uarte0/psel/txd/struct.R.html" title="struct nrf52840_pac::uarte0::psel::txd::R">txd::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-667" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/psel/txd.rs.html#142">source</a><a href="#associatedtype.Reader-667" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uarte0/psel/txd/struct.R.html" title="struct nrf52840_pac::uarte0::psel::txd::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-AMOUNT_SPEC-11" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/rxd/amount.rs.html#31-33">source</a><a href="#impl-Readable-for-AMOUNT_SPEC-11" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::uarte0::rxd::amount::<a class="struct" href="../uarte0/rxd/amount/struct.AMOUNT_SPEC.html" title="struct nrf52840_pac::uarte0::rxd::amount::AMOUNT_SPEC">AMOUNT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uarte0/rxd/amount/struct.R.html" title="struct nrf52840_pac::uarte0::rxd::amount::R">amount::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-668" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/rxd/amount.rs.html#32">source</a><a href="#associatedtype.Reader-668" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uarte0/rxd/amount/struct.R.html" title="struct nrf52840_pac::uarte0::rxd::amount::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-MAXCNT_SPEC-11" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/rxd/maxcnt.rs.html#67-69">source</a><a href="#impl-Readable-for-MAXCNT_SPEC-11" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::uarte0::rxd::maxcnt::<a class="struct" href="../uarte0/rxd/maxcnt/struct.MAXCNT_SPEC.html" title="struct nrf52840_pac::uarte0::rxd::maxcnt::MAXCNT_SPEC">MAXCNT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uarte0/rxd/maxcnt/struct.R.html" title="struct nrf52840_pac::uarte0::rxd::maxcnt::R">maxcnt::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-669" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/rxd/maxcnt.rs.html#68">source</a><a href="#associatedtype.Reader-669" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uarte0/rxd/maxcnt/struct.R.html" title="struct nrf52840_pac::uarte0::rxd::maxcnt::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-PTR_SPEC-14" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/rxd/ptr.rs.html#67-69">source</a><a href="#impl-Readable-for-PTR_SPEC-14" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::uarte0::rxd::ptr::<a class="struct" href="../uarte0/rxd/ptr/struct.PTR_SPEC.html" title="struct nrf52840_pac::uarte0::rxd::ptr::PTR_SPEC">PTR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uarte0/rxd/ptr/struct.R.html" title="struct nrf52840_pac::uarte0::rxd::ptr::R">ptr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-670" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/rxd/ptr.rs.html#68">source</a><a href="#associatedtype.Reader-670" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uarte0/rxd/ptr/struct.R.html" title="struct nrf52840_pac::uarte0::rxd::ptr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-SHORTS_SPEC-16" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/shorts.rs.html#175-177">source</a><a href="#impl-Readable-for-SHORTS_SPEC-16" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::uarte0::shorts::<a class="struct" href="../uarte0/shorts/struct.SHORTS_SPEC.html" title="struct nrf52840_pac::uarte0::shorts::SHORTS_SPEC">SHORTS_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uarte0/shorts/struct.R.html" title="struct nrf52840_pac::uarte0::shorts::R">shorts::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-671" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/shorts.rs.html#176">source</a><a href="#associatedtype.Reader-671" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uarte0/shorts/struct.R.html" title="struct nrf52840_pac::uarte0::shorts::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-AMOUNT_SPEC-12" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/txd/amount.rs.html#31-33">source</a><a href="#impl-Readable-for-AMOUNT_SPEC-12" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::uarte0::txd::amount::<a class="struct" href="../uarte0/txd/amount/struct.AMOUNT_SPEC.html" title="struct nrf52840_pac::uarte0::txd::amount::AMOUNT_SPEC">AMOUNT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uarte0/txd/amount/struct.R.html" title="struct nrf52840_pac::uarte0::txd::amount::R">amount::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-672" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/txd/amount.rs.html#32">source</a><a href="#associatedtype.Reader-672" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uarte0/txd/amount/struct.R.html" title="struct nrf52840_pac::uarte0::txd::amount::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-MAXCNT_SPEC-12" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/txd/maxcnt.rs.html#67-69">source</a><a href="#impl-Readable-for-MAXCNT_SPEC-12" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::uarte0::txd::maxcnt::<a class="struct" href="../uarte0/txd/maxcnt/struct.MAXCNT_SPEC.html" title="struct nrf52840_pac::uarte0::txd::maxcnt::MAXCNT_SPEC">MAXCNT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uarte0/txd/maxcnt/struct.R.html" title="struct nrf52840_pac::uarte0::txd::maxcnt::R">maxcnt::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-673" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/txd/maxcnt.rs.html#68">source</a><a href="#associatedtype.Reader-673" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uarte0/txd/maxcnt/struct.R.html" title="struct nrf52840_pac::uarte0::txd::maxcnt::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-PTR_SPEC-15" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/txd/ptr.rs.html#67-69">source</a><a href="#impl-Readable-for-PTR_SPEC-15" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::uarte0::txd::ptr::<a class="struct" href="../uarte0/txd/ptr/struct.PTR_SPEC.html" title="struct nrf52840_pac::uarte0::txd::ptr::PTR_SPEC">PTR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uarte0/txd/ptr/struct.R.html" title="struct nrf52840_pac::uarte0::txd::ptr::R">ptr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-674" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uarte0/txd/ptr.rs.html#68">source</a><a href="#associatedtype.Reader-674" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uarte0/txd/ptr/struct.R.html" title="struct nrf52840_pac::uarte0::txd::ptr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-APPROTECT_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uicr/approtect.rs.html#115-117">source</a><a href="#impl-Readable-for-APPROTECT_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../uicr/approtect/struct.APPROTECT_SPEC.html" title="struct nrf52840_pac::uicr::approtect::APPROTECT_SPEC">APPROTECT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uicr/approtect/struct.R.html" title="struct nrf52840_pac::uicr::approtect::R">approtect::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-675" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uicr/approtect.rs.html#116">source</a><a href="#associatedtype.Reader-675" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uicr/approtect/struct.R.html" title="struct nrf52840_pac::uicr::approtect::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-CUSTOMER_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uicr/customer.rs.html#67-69">source</a><a href="#impl-Readable-for-CUSTOMER_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../uicr/customer/struct.CUSTOMER_SPEC.html" title="struct nrf52840_pac::uicr::customer::CUSTOMER_SPEC">CUSTOMER_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uicr/customer/struct.R.html" title="struct nrf52840_pac::uicr::customer::R">customer::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-676" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uicr/customer.rs.html#68">source</a><a href="#associatedtype.Reader-676" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uicr/customer/struct.R.html" title="struct nrf52840_pac::uicr::customer::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-DEBUGCTRL_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uicr/debugctrl.rs.html#179-181">source</a><a href="#impl-Readable-for-DEBUGCTRL_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../uicr/debugctrl/struct.DEBUGCTRL_SPEC.html" title="struct nrf52840_pac::uicr::debugctrl::DEBUGCTRL_SPEC">DEBUGCTRL_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uicr/debugctrl/struct.R.html" title="struct nrf52840_pac::uicr::debugctrl::R">debugctrl::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-677" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uicr/debugctrl.rs.html#180">source</a><a href="#associatedtype.Reader-677" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uicr/debugctrl/struct.R.html" title="struct nrf52840_pac::uicr::debugctrl::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-NFCPINS_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uicr/nfcpins.rs.html#113-115">source</a><a href="#impl-Readable-for-NFCPINS_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../uicr/nfcpins/struct.NFCPINS_SPEC.html" title="struct nrf52840_pac::uicr::nfcpins::NFCPINS_SPEC">NFCPINS_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uicr/nfcpins/struct.R.html" title="struct nrf52840_pac::uicr::nfcpins::R">nfcpins::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-678" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uicr/nfcpins.rs.html#114">source</a><a href="#associatedtype.Reader-678" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uicr/nfcpins/struct.R.html" title="struct nrf52840_pac::uicr::nfcpins::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-NRFFW_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uicr/nrffw.rs.html#67-69">source</a><a href="#impl-Readable-for-NRFFW_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../uicr/nrffw/struct.NRFFW_SPEC.html" title="struct nrf52840_pac::uicr::nrffw::NRFFW_SPEC">NRFFW_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uicr/nrffw/struct.R.html" title="struct nrf52840_pac::uicr::nrffw::R">nrffw::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-679" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uicr/nrffw.rs.html#68">source</a><a href="#associatedtype.Reader-679" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uicr/nrffw/struct.R.html" title="struct nrf52840_pac::uicr::nrffw::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-NRFHW_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uicr/nrfhw.rs.html#67-69">source</a><a href="#impl-Readable-for-NRFHW_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../uicr/nrfhw/struct.NRFHW_SPEC.html" title="struct nrf52840_pac::uicr::nrfhw::NRFHW_SPEC">NRFHW_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uicr/nrfhw/struct.R.html" title="struct nrf52840_pac::uicr::nrfhw::R">nrfhw::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-680" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uicr/nrfhw.rs.html#68">source</a><a href="#associatedtype.Reader-680" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uicr/nrfhw/struct.R.html" title="struct nrf52840_pac::uicr::nrfhw::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-PSELRESET_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uicr/pselreset.rs.html#141-143">source</a><a href="#impl-Readable-for-PSELRESET_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../uicr/pselreset/struct.PSELRESET_SPEC.html" title="struct nrf52840_pac::uicr::pselreset::PSELRESET_SPEC">PSELRESET_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uicr/pselreset/struct.R.html" title="struct nrf52840_pac::uicr::pselreset::R">pselreset::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-681" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uicr/pselreset.rs.html#142">source</a><a href="#associatedtype.Reader-681" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uicr/pselreset/struct.R.html" title="struct nrf52840_pac::uicr::pselreset::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-REGOUT0_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uicr/regout0.rs.html#180-182">source</a><a href="#impl-Readable-for-REGOUT0_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../uicr/regout0/struct.REGOUT0_SPEC.html" title="struct nrf52840_pac::uicr::regout0::REGOUT0_SPEC">REGOUT0_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uicr/regout0/struct.R.html" title="struct nrf52840_pac::uicr::regout0::R">regout0::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-682" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uicr/regout0.rs.html#181">source</a><a href="#associatedtype.Reader-682" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uicr/regout0/struct.R.html" title="struct nrf52840_pac::uicr::regout0::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-UNUSED0_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uicr/unused0.rs.html#51-53">source</a><a href="#impl-Readable-for-UNUSED0_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::uicr::unused0::<a class="struct" href="../uicr/unused0/struct.UNUSED0_SPEC.html" title="struct nrf52840_pac::uicr::unused0::UNUSED0_SPEC">UNUSED0_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uicr/unused0/struct.R.html" title="struct nrf52840_pac::uicr::unused0::R">unused0::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-683" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uicr/unused0.rs.html#52">source</a><a href="#associatedtype.Reader-683" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uicr/unused0/struct.R.html" title="struct nrf52840_pac::uicr::unused0::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-UNUSED1_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uicr/unused1.rs.html#51-53">source</a><a href="#impl-Readable-for-UNUSED1_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../uicr/unused1/struct.UNUSED1_SPEC.html" title="struct nrf52840_pac::uicr::unused1::UNUSED1_SPEC">UNUSED1_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uicr/unused1/struct.R.html" title="struct nrf52840_pac::uicr::unused1::R">unused1::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-684" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uicr/unused1.rs.html#52">source</a><a href="#associatedtype.Reader-684" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uicr/unused1/struct.R.html" title="struct nrf52840_pac::uicr::unused1::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-UNUSED2_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uicr/unused2.rs.html#51-53">source</a><a href="#impl-Readable-for-UNUSED2_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../uicr/unused2/struct.UNUSED2_SPEC.html" title="struct nrf52840_pac::uicr::unused2::UNUSED2_SPEC">UNUSED2_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uicr/unused2/struct.R.html" title="struct nrf52840_pac::uicr::unused2::R">unused2::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-685" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uicr/unused2.rs.html#52">source</a><a href="#associatedtype.Reader-685" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uicr/unused2/struct.R.html" title="struct nrf52840_pac::uicr::unused2::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-UNUSED3_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/uicr/unused3.rs.html#51-53">source</a><a href="#impl-Readable-for-UNUSED3_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../uicr/unused3/struct.UNUSED3_SPEC.html" title="struct nrf52840_pac::uicr::unused3::UNUSED3_SPEC">UNUSED3_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../uicr/unused3/struct.R.html" title="struct nrf52840_pac::uicr::unused3::R">unused3::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-686" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/uicr/unused3.rs.html#52">source</a><a href="#associatedtype.Reader-686" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../uicr/unused3/struct.R.html" title="struct nrf52840_pac::uicr::unused3::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-BMREQUESTTYPE_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/bmrequesttype.rs.html#175-177">source</a><a href="#impl-Readable-for-BMREQUESTTYPE_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../usbd/bmrequesttype/struct.BMREQUESTTYPE_SPEC.html" title="struct nrf52840_pac::usbd::bmrequesttype::BMREQUESTTYPE_SPEC">BMREQUESTTYPE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../usbd/bmrequesttype/struct.R.html" title="struct nrf52840_pac::usbd::bmrequesttype::R">bmrequesttype::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-687" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/bmrequesttype.rs.html#176">source</a><a href="#associatedtype.Reader-687" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../usbd/bmrequesttype/struct.R.html" title="struct nrf52840_pac::usbd::bmrequesttype::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-BREQUEST_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/brequest.rs.html#139-141">source</a><a href="#impl-Readable-for-BREQUEST_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../usbd/brequest/struct.BREQUEST_SPEC.html" title="struct nrf52840_pac::usbd::brequest::BREQUEST_SPEC">BREQUEST_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../usbd/brequest/struct.R.html" title="struct nrf52840_pac::usbd::brequest::R">brequest::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-688" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/brequest.rs.html#140">source</a><a href="#associatedtype.Reader-688" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../usbd/brequest/struct.R.html" title="struct nrf52840_pac::usbd::brequest::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-DPDMVALUE_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/dpdmvalue.rs.html#128-130">source</a><a href="#impl-Readable-for-DPDMVALUE_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../usbd/dpdmvalue/struct.DPDMVALUE_SPEC.html" title="struct nrf52840_pac::usbd::dpdmvalue::DPDMVALUE_SPEC">DPDMVALUE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../usbd/dpdmvalue/struct.R.html" title="struct nrf52840_pac::usbd::dpdmvalue::R">dpdmvalue::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-689" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/dpdmvalue.rs.html#129">source</a><a href="#associatedtype.Reader-689" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../usbd/dpdmvalue/struct.R.html" title="struct nrf52840_pac::usbd::dpdmvalue::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-DTOGGLE_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/dtoggle.rs.html#202-204">source</a><a href="#impl-Readable-for-DTOGGLE_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../usbd/dtoggle/struct.DTOGGLE_SPEC.html" title="struct nrf52840_pac::usbd::dtoggle::DTOGGLE_SPEC">DTOGGLE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../usbd/dtoggle/struct.R.html" title="struct nrf52840_pac::usbd::dtoggle::R">dtoggle::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-690" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/dtoggle.rs.html#203">source</a><a href="#associatedtype.Reader-690" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../usbd/dtoggle/struct.R.html" title="struct nrf52840_pac::usbd::dtoggle::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ENABLE_SPEC-19" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/enable.rs.html#113-115">source</a><a href="#impl-Readable-for-ENABLE_SPEC-19" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::usbd::enable::<a class="struct" href="../usbd/enable/struct.ENABLE_SPEC.html" title="struct nrf52840_pac::usbd::enable::ENABLE_SPEC">ENABLE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../usbd/enable/struct.R.html" title="struct nrf52840_pac::usbd::enable::R">enable::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-691" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/enable.rs.html#114">source</a><a href="#associatedtype.Reader-691" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../usbd/enable/struct.R.html" title="struct nrf52840_pac::usbd::enable::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EPDATASTATUS_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/epdatastatus.rs.html#893-895">source</a><a href="#impl-Readable-for-EPDATASTATUS_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../usbd/epdatastatus/struct.EPDATASTATUS_SPEC.html" title="struct nrf52840_pac::usbd::epdatastatus::EPDATASTATUS_SPEC">EPDATASTATUS_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../usbd/epdatastatus/struct.R.html" title="struct nrf52840_pac::usbd::epdatastatus::R">epdatastatus::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-692" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/epdatastatus.rs.html#894">source</a><a href="#associatedtype.Reader-692" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../usbd/epdatastatus/struct.R.html" title="struct nrf52840_pac::usbd::epdatastatus::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-AMOUNT_SPEC-13" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/epin/amount.rs.html#31-33">source</a><a href="#impl-Readable-for-AMOUNT_SPEC-13" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::usbd::epin::amount::<a class="struct" href="../usbd/epin/amount/struct.AMOUNT_SPEC.html" title="struct nrf52840_pac::usbd::epin::amount::AMOUNT_SPEC">AMOUNT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../usbd/epin/amount/struct.R.html" title="struct nrf52840_pac::usbd::epin::amount::R">amount::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-693" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/epin/amount.rs.html#32">source</a><a href="#associatedtype.Reader-693" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../usbd/epin/amount/struct.R.html" title="struct nrf52840_pac::usbd::epin::amount::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-MAXCNT_SPEC-13" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/epin/maxcnt.rs.html#67-69">source</a><a href="#impl-Readable-for-MAXCNT_SPEC-13" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::usbd::epin::maxcnt::<a class="struct" href="../usbd/epin/maxcnt/struct.MAXCNT_SPEC.html" title="struct nrf52840_pac::usbd::epin::maxcnt::MAXCNT_SPEC">MAXCNT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../usbd/epin/maxcnt/struct.R.html" title="struct nrf52840_pac::usbd::epin::maxcnt::R">maxcnt::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-694" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/epin/maxcnt.rs.html#68">source</a><a href="#associatedtype.Reader-694" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../usbd/epin/maxcnt/struct.R.html" title="struct nrf52840_pac::usbd::epin::maxcnt::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-PTR_SPEC-16" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/epin/ptr.rs.html#67-69">source</a><a href="#impl-Readable-for-PTR_SPEC-16" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::usbd::epin::ptr::<a class="struct" href="../usbd/epin/ptr/struct.PTR_SPEC.html" title="struct nrf52840_pac::usbd::epin::ptr::PTR_SPEC">PTR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../usbd/epin/ptr/struct.R.html" title="struct nrf52840_pac::usbd::epin::ptr::R">ptr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-695" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/epin/ptr.rs.html#68">source</a><a href="#associatedtype.Reader-695" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../usbd/epin/ptr/struct.R.html" title="struct nrf52840_pac::usbd::epin::ptr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EPINEN_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/epinen.rs.html#593-595">source</a><a href="#impl-Readable-for-EPINEN_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../usbd/epinen/struct.EPINEN_SPEC.html" title="struct nrf52840_pac::usbd::epinen::EPINEN_SPEC">EPINEN_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../usbd/epinen/struct.R.html" title="struct nrf52840_pac::usbd::epinen::R">epinen::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-696" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/epinen.rs.html#594">source</a><a href="#associatedtype.Reader-696" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../usbd/epinen/struct.R.html" title="struct nrf52840_pac::usbd::epinen::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-AMOUNT_SPEC-14" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/epout/amount.rs.html#31-33">source</a><a href="#impl-Readable-for-AMOUNT_SPEC-14" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::usbd::epout::amount::<a class="struct" href="../usbd/epout/amount/struct.AMOUNT_SPEC.html" title="struct nrf52840_pac::usbd::epout::amount::AMOUNT_SPEC">AMOUNT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../usbd/epout/amount/struct.R.html" title="struct nrf52840_pac::usbd::epout::amount::R">amount::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-697" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/epout/amount.rs.html#32">source</a><a href="#associatedtype.Reader-697" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../usbd/epout/amount/struct.R.html" title="struct nrf52840_pac::usbd::epout::amount::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-MAXCNT_SPEC-14" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/epout/maxcnt.rs.html#67-69">source</a><a href="#impl-Readable-for-MAXCNT_SPEC-14" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::usbd::epout::maxcnt::<a class="struct" href="../usbd/epout/maxcnt/struct.MAXCNT_SPEC.html" title="struct nrf52840_pac::usbd::epout::maxcnt::MAXCNT_SPEC">MAXCNT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../usbd/epout/maxcnt/struct.R.html" title="struct nrf52840_pac::usbd::epout::maxcnt::R">maxcnt::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-698" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/epout/maxcnt.rs.html#68">source</a><a href="#associatedtype.Reader-698" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../usbd/epout/maxcnt/struct.R.html" title="struct nrf52840_pac::usbd::epout::maxcnt::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-PTR_SPEC-17" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/epout/ptr.rs.html#67-69">source</a><a href="#impl-Readable-for-PTR_SPEC-17" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::usbd::epout::ptr::<a class="struct" href="../usbd/epout/ptr/struct.PTR_SPEC.html" title="struct nrf52840_pac::usbd::epout::ptr::PTR_SPEC">PTR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../usbd/epout/ptr/struct.R.html" title="struct nrf52840_pac::usbd::epout::ptr::R">ptr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-699" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/epout/ptr.rs.html#68">source</a><a href="#associatedtype.Reader-699" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../usbd/epout/ptr/struct.R.html" title="struct nrf52840_pac::usbd::epout::ptr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EPOUTEN_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/epouten.rs.html#593-595">source</a><a href="#impl-Readable-for-EPOUTEN_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../usbd/epouten/struct.EPOUTEN_SPEC.html" title="struct nrf52840_pac::usbd::epouten::EPOUTEN_SPEC">EPOUTEN_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../usbd/epouten/struct.R.html" title="struct nrf52840_pac::usbd::epouten::R">epouten::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-700" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/epouten.rs.html#594">source</a><a href="#associatedtype.Reader-700" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../usbd/epouten/struct.R.html" title="struct nrf52840_pac::usbd::epouten::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EPSTATUS_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/epstatus.rs.html#1133-1135">source</a><a href="#impl-Readable-for-EPSTATUS_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../usbd/epstatus/struct.EPSTATUS_SPEC.html" title="struct nrf52840_pac::usbd::epstatus::EPSTATUS_SPEC">EPSTATUS_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../usbd/epstatus/struct.R.html" title="struct nrf52840_pac::usbd::epstatus::R">epstatus::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-701" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/epstatus.rs.html#1134">source</a><a href="#associatedtype.Reader-701" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../usbd/epstatus/struct.R.html" title="struct nrf52840_pac::usbd::epstatus::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTCAUSE_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/eventcause.rs.html#355-357">source</a><a href="#impl-Readable-for-EVENTCAUSE_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../usbd/eventcause/struct.EVENTCAUSE_SPEC.html" title="struct nrf52840_pac::usbd::eventcause::EVENTCAUSE_SPEC">EVENTCAUSE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../usbd/eventcause/struct.R.html" title="struct nrf52840_pac::usbd::eventcause::R">eventcause::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-702" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/eventcause.rs.html#356">source</a><a href="#associatedtype.Reader-702" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../usbd/eventcause/struct.R.html" title="struct nrf52840_pac::usbd::eventcause::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_ENDEPIN_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/events_endepin.rs.html#69-71">source</a><a href="#impl-Readable-for-EVENTS_ENDEPIN_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../usbd/events_endepin/struct.EVENTS_ENDEPIN_SPEC.html" title="struct nrf52840_pac::usbd::events_endepin::EVENTS_ENDEPIN_SPEC">EVENTS_ENDEPIN_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../usbd/events_endepin/struct.R.html" title="struct nrf52840_pac::usbd::events_endepin::R">events_endepin::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-703" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/events_endepin.rs.html#70">source</a><a href="#associatedtype.Reader-703" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../usbd/events_endepin/struct.R.html" title="struct nrf52840_pac::usbd::events_endepin::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_ENDEPOUT_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/events_endepout.rs.html#69-71">source</a><a href="#impl-Readable-for-EVENTS_ENDEPOUT_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../usbd/events_endepout/struct.EVENTS_ENDEPOUT_SPEC.html" title="struct nrf52840_pac::usbd::events_endepout::EVENTS_ENDEPOUT_SPEC">EVENTS_ENDEPOUT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../usbd/events_endepout/struct.R.html" title="struct nrf52840_pac::usbd::events_endepout::R">events_endepout::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-704" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/events_endepout.rs.html#70">source</a><a href="#associatedtype.Reader-704" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../usbd/events_endepout/struct.R.html" title="struct nrf52840_pac::usbd::events_endepout::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_ENDISOIN_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/events_endisoin.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_ENDISOIN_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../usbd/events_endisoin/struct.EVENTS_ENDISOIN_SPEC.html" title="struct nrf52840_pac::usbd::events_endisoin::EVENTS_ENDISOIN_SPEC">EVENTS_ENDISOIN_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../usbd/events_endisoin/struct.R.html" title="struct nrf52840_pac::usbd::events_endisoin::R">events_endisoin::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-705" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/events_endisoin.rs.html#69">source</a><a href="#associatedtype.Reader-705" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../usbd/events_endisoin/struct.R.html" title="struct nrf52840_pac::usbd::events_endisoin::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_ENDISOOUT_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/events_endisoout.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_ENDISOOUT_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../usbd/events_endisoout/struct.EVENTS_ENDISOOUT_SPEC.html" title="struct nrf52840_pac::usbd::events_endisoout::EVENTS_ENDISOOUT_SPEC">EVENTS_ENDISOOUT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../usbd/events_endisoout/struct.R.html" title="struct nrf52840_pac::usbd::events_endisoout::R">events_endisoout::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-706" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/events_endisoout.rs.html#69">source</a><a href="#associatedtype.Reader-706" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../usbd/events_endisoout/struct.R.html" title="struct nrf52840_pac::usbd::events_endisoout::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_EP0DATADONE_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/events_ep0datadone.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_EP0DATADONE_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../usbd/events_ep0datadone/struct.EVENTS_EP0DATADONE_SPEC.html" title="struct nrf52840_pac::usbd::events_ep0datadone::EVENTS_EP0DATADONE_SPEC">EVENTS_EP0DATADONE_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../usbd/events_ep0datadone/struct.R.html" title="struct nrf52840_pac::usbd::events_ep0datadone::R">events_ep0datadone::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-707" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/events_ep0datadone.rs.html#69">source</a><a href="#associatedtype.Reader-707" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../usbd/events_ep0datadone/struct.R.html" title="struct nrf52840_pac::usbd::events_ep0datadone::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_EP0SETUP_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/events_ep0setup.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_EP0SETUP_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../usbd/events_ep0setup/struct.EVENTS_EP0SETUP_SPEC.html" title="struct nrf52840_pac::usbd::events_ep0setup::EVENTS_EP0SETUP_SPEC">EVENTS_EP0SETUP_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../usbd/events_ep0setup/struct.R.html" title="struct nrf52840_pac::usbd::events_ep0setup::R">events_ep0setup::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-708" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/events_ep0setup.rs.html#69">source</a><a href="#associatedtype.Reader-708" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../usbd/events_ep0setup/struct.R.html" title="struct nrf52840_pac::usbd::events_ep0setup::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_EPDATA_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/events_epdata.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_EPDATA_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../usbd/events_epdata/struct.EVENTS_EPDATA_SPEC.html" title="struct nrf52840_pac::usbd::events_epdata::EVENTS_EPDATA_SPEC">EVENTS_EPDATA_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../usbd/events_epdata/struct.R.html" title="struct nrf52840_pac::usbd::events_epdata::R">events_epdata::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-709" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/events_epdata.rs.html#68">source</a><a href="#associatedtype.Reader-709" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../usbd/events_epdata/struct.R.html" title="struct nrf52840_pac::usbd::events_epdata::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_SOF_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/events_sof.rs.html#67-69">source</a><a href="#impl-Readable-for-EVENTS_SOF_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../usbd/events_sof/struct.EVENTS_SOF_SPEC.html" title="struct nrf52840_pac::usbd::events_sof::EVENTS_SOF_SPEC">EVENTS_SOF_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../usbd/events_sof/struct.R.html" title="struct nrf52840_pac::usbd::events_sof::R">events_sof::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-710" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/events_sof.rs.html#68">source</a><a href="#associatedtype.Reader-710" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../usbd/events_sof/struct.R.html" title="struct nrf52840_pac::usbd::events_sof::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_STARTED_SPEC-4" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/events_started.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_STARTED_SPEC-4" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::usbd::events_started::<a class="struct" href="../usbd/events_started/struct.EVENTS_STARTED_SPEC.html" title="struct nrf52840_pac::usbd::events_started::EVENTS_STARTED_SPEC">EVENTS_STARTED_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../usbd/events_started/struct.R.html" title="struct nrf52840_pac::usbd::events_started::R">events_started::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-711" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/events_started.rs.html#69">source</a><a href="#associatedtype.Reader-711" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../usbd/events_started/struct.R.html" title="struct nrf52840_pac::usbd::events_started::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_USBEVENT_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/events_usbevent.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_USBEVENT_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../usbd/events_usbevent/struct.EVENTS_USBEVENT_SPEC.html" title="struct nrf52840_pac::usbd::events_usbevent::EVENTS_USBEVENT_SPEC">EVENTS_USBEVENT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../usbd/events_usbevent/struct.R.html" title="struct nrf52840_pac::usbd::events_usbevent::R">events_usbevent::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-712" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/events_usbevent.rs.html#69">source</a><a href="#associatedtype.Reader-712" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../usbd/events_usbevent/struct.R.html" title="struct nrf52840_pac::usbd::events_usbevent::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_USBRESET_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/events_usbreset.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_USBRESET_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../usbd/events_usbreset/struct.EVENTS_USBRESET_SPEC.html" title="struct nrf52840_pac::usbd::events_usbreset::EVENTS_USBRESET_SPEC">EVENTS_USBRESET_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../usbd/events_usbreset/struct.R.html" title="struct nrf52840_pac::usbd::events_usbreset::R">events_usbreset::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-713" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/events_usbreset.rs.html#69">source</a><a href="#associatedtype.Reader-713" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../usbd/events_usbreset/struct.R.html" title="struct nrf52840_pac::usbd::events_usbreset::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-FRAMECNTR_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/framecntr.rs.html#31-33">source</a><a href="#impl-Readable-for-FRAMECNTR_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../usbd/framecntr/struct.FRAMECNTR_SPEC.html" title="struct nrf52840_pac::usbd::framecntr::FRAMECNTR_SPEC">FRAMECNTR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../usbd/framecntr/struct.R.html" title="struct nrf52840_pac::usbd::framecntr::R">framecntr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-714" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/framecntr.rs.html#32">source</a><a href="#associatedtype.Reader-714" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../usbd/framecntr/struct.R.html" title="struct nrf52840_pac::usbd::framecntr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EPIN_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/halted/epin.rs.html#67-69">source</a><a href="#impl-Readable-for-EPIN_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../usbd/halted/epin/struct.EPIN_SPEC.html" title="struct nrf52840_pac::usbd::halted::epin::EPIN_SPEC">EPIN_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../usbd/halted/epin/struct.R.html" title="struct nrf52840_pac::usbd::halted::epin::R">epin::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-715" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/halted/epin.rs.html#68">source</a><a href="#associatedtype.Reader-715" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../usbd/halted/epin/struct.R.html" title="struct nrf52840_pac::usbd::halted::epin::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EPOUT_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/halted/epout.rs.html#67-69">source</a><a href="#impl-Readable-for-EPOUT_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::usbd::halted::epout::<a class="struct" href="../usbd/halted/epout/struct.EPOUT_SPEC.html" title="struct nrf52840_pac::usbd::halted::epout::EPOUT_SPEC">EPOUT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../usbd/halted/epout/struct.R.html" title="struct nrf52840_pac::usbd::halted::epout::R">epout::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-716" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/halted/epout.rs.html#68">source</a><a href="#associatedtype.Reader-716" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../usbd/halted/epout/struct.R.html" title="struct nrf52840_pac::usbd::halted::epout::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTEN_SPEC-12" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/inten.rs.html#1633-1635">source</a><a href="#impl-Readable-for-INTEN_SPEC-12" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::usbd::inten::<a class="struct" href="../usbd/inten/struct.INTEN_SPEC.html" title="struct nrf52840_pac::usbd::inten::INTEN_SPEC">INTEN_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../usbd/inten/struct.R.html" title="struct nrf52840_pac::usbd::inten::R">inten::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-717" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/inten.rs.html#1634">source</a><a href="#associatedtype.Reader-717" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../usbd/inten/struct.R.html" title="struct nrf52840_pac::usbd::inten::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENCLR_SPEC-31" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/intenclr.rs.html#1825-1827">source</a><a href="#impl-Readable-for-INTENCLR_SPEC-31" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::usbd::intenclr::<a class="struct" href="../usbd/intenclr/struct.INTENCLR_SPEC.html" title="struct nrf52840_pac::usbd::intenclr::INTENCLR_SPEC">INTENCLR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../usbd/intenclr/struct.R.html" title="struct nrf52840_pac::usbd::intenclr::R">intenclr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-718" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/intenclr.rs.html#1826">source</a><a href="#associatedtype.Reader-718" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../usbd/intenclr/struct.R.html" title="struct nrf52840_pac::usbd::intenclr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENSET_SPEC-31" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/intenset.rs.html#1825-1827">source</a><a href="#impl-Readable-for-INTENSET_SPEC-31" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::usbd::intenset::<a class="struct" href="../usbd/intenset/struct.INTENSET_SPEC.html" title="struct nrf52840_pac::usbd::intenset::INTENSET_SPEC">INTENSET_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../usbd/intenset/struct.R.html" title="struct nrf52840_pac::usbd::intenset::R">intenset::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-719" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/intenset.rs.html#1826">source</a><a href="#associatedtype.Reader-719" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../usbd/intenset/struct.R.html" title="struct nrf52840_pac::usbd::intenset::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-AMOUNT_SPEC-15" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/isoin/amount.rs.html#31-33">source</a><a href="#impl-Readable-for-AMOUNT_SPEC-15" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::usbd::isoin::amount::<a class="struct" href="../usbd/isoin/amount/struct.AMOUNT_SPEC.html" title="struct nrf52840_pac::usbd::isoin::amount::AMOUNT_SPEC">AMOUNT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../usbd/isoin/amount/struct.R.html" title="struct nrf52840_pac::usbd::isoin::amount::R">amount::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-720" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/isoin/amount.rs.html#32">source</a><a href="#associatedtype.Reader-720" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../usbd/isoin/amount/struct.R.html" title="struct nrf52840_pac::usbd::isoin::amount::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-MAXCNT_SPEC-15" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/isoin/maxcnt.rs.html#67-69">source</a><a href="#impl-Readable-for-MAXCNT_SPEC-15" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::usbd::isoin::maxcnt::<a class="struct" href="../usbd/isoin/maxcnt/struct.MAXCNT_SPEC.html" title="struct nrf52840_pac::usbd::isoin::maxcnt::MAXCNT_SPEC">MAXCNT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../usbd/isoin/maxcnt/struct.R.html" title="struct nrf52840_pac::usbd::isoin::maxcnt::R">maxcnt::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-721" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/isoin/maxcnt.rs.html#68">source</a><a href="#associatedtype.Reader-721" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../usbd/isoin/maxcnt/struct.R.html" title="struct nrf52840_pac::usbd::isoin::maxcnt::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-PTR_SPEC-18" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/isoin/ptr.rs.html#67-69">source</a><a href="#impl-Readable-for-PTR_SPEC-18" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::usbd::isoin::ptr::<a class="struct" href="../usbd/isoin/ptr/struct.PTR_SPEC.html" title="struct nrf52840_pac::usbd::isoin::ptr::PTR_SPEC">PTR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../usbd/isoin/ptr/struct.R.html" title="struct nrf52840_pac::usbd::isoin::ptr::R">ptr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-722" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/isoin/ptr.rs.html#68">source</a><a href="#associatedtype.Reader-722" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../usbd/isoin/ptr/struct.R.html" title="struct nrf52840_pac::usbd::isoin::ptr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ISOINCONFIG_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/isoinconfig.rs.html#113-115">source</a><a href="#impl-Readable-for-ISOINCONFIG_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../usbd/isoinconfig/struct.ISOINCONFIG_SPEC.html" title="struct nrf52840_pac::usbd::isoinconfig::ISOINCONFIG_SPEC">ISOINCONFIG_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../usbd/isoinconfig/struct.R.html" title="struct nrf52840_pac::usbd::isoinconfig::R">isoinconfig::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-723" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/isoinconfig.rs.html#114">source</a><a href="#associatedtype.Reader-723" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../usbd/isoinconfig/struct.R.html" title="struct nrf52840_pac::usbd::isoinconfig::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-AMOUNT_SPEC-16" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/isoout/amount.rs.html#31-33">source</a><a href="#impl-Readable-for-AMOUNT_SPEC-16" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::usbd::isoout::amount::<a class="struct" href="../usbd/isoout/amount/struct.AMOUNT_SPEC.html" title="struct nrf52840_pac::usbd::isoout::amount::AMOUNT_SPEC">AMOUNT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../usbd/isoout/amount/struct.R.html" title="struct nrf52840_pac::usbd::isoout::amount::R">amount::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-724" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/isoout/amount.rs.html#32">source</a><a href="#associatedtype.Reader-724" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../usbd/isoout/amount/struct.R.html" title="struct nrf52840_pac::usbd::isoout::amount::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-MAXCNT_SPEC-16" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/isoout/maxcnt.rs.html#67-69">source</a><a href="#impl-Readable-for-MAXCNT_SPEC-16" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::usbd::isoout::maxcnt::<a class="struct" href="../usbd/isoout/maxcnt/struct.MAXCNT_SPEC.html" title="struct nrf52840_pac::usbd::isoout::maxcnt::MAXCNT_SPEC">MAXCNT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../usbd/isoout/maxcnt/struct.R.html" title="struct nrf52840_pac::usbd::isoout::maxcnt::R">maxcnt::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-725" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/isoout/maxcnt.rs.html#68">source</a><a href="#associatedtype.Reader-725" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../usbd/isoout/maxcnt/struct.R.html" title="struct nrf52840_pac::usbd::isoout::maxcnt::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-PTR_SPEC-19" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/isoout/ptr.rs.html#67-69">source</a><a href="#impl-Readable-for-PTR_SPEC-19" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::usbd::isoout::ptr::<a class="struct" href="../usbd/isoout/ptr/struct.PTR_SPEC.html" title="struct nrf52840_pac::usbd::isoout::ptr::PTR_SPEC">PTR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../usbd/isoout/ptr/struct.R.html" title="struct nrf52840_pac::usbd::isoout::ptr::R">ptr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-726" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/isoout/ptr.rs.html#68">source</a><a href="#associatedtype.Reader-726" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../usbd/isoout/ptr/struct.R.html" title="struct nrf52840_pac::usbd::isoout::ptr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ISOSPLIT_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/isosplit.rs.html#115-117">source</a><a href="#impl-Readable-for-ISOSPLIT_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../usbd/isosplit/struct.ISOSPLIT_SPEC.html" title="struct nrf52840_pac::usbd::isosplit::ISOSPLIT_SPEC">ISOSPLIT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../usbd/isosplit/struct.R.html" title="struct nrf52840_pac::usbd::isosplit::R">isosplit::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-727" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/isosplit.rs.html#116">source</a><a href="#associatedtype.Reader-727" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../usbd/isosplit/struct.R.html" title="struct nrf52840_pac::usbd::isosplit::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-LOWPOWER_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/lowpower.rs.html#113-115">source</a><a href="#impl-Readable-for-LOWPOWER_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../usbd/lowpower/struct.LOWPOWER_SPEC.html" title="struct nrf52840_pac::usbd::lowpower::LOWPOWER_SPEC">LOWPOWER_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../usbd/lowpower/struct.R.html" title="struct nrf52840_pac::usbd::lowpower::R">lowpower::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-728" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/lowpower.rs.html#114">source</a><a href="#associatedtype.Reader-728" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../usbd/lowpower/struct.R.html" title="struct nrf52840_pac::usbd::lowpower::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-SHORTS_SPEC-17" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/shorts.rs.html#378-380">source</a><a href="#impl-Readable-for-SHORTS_SPEC-17" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::usbd::shorts::<a class="struct" href="../usbd/shorts/struct.SHORTS_SPEC.html" title="struct nrf52840_pac::usbd::shorts::SHORTS_SPEC">SHORTS_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../usbd/shorts/struct.R.html" title="struct nrf52840_pac::usbd::shorts::R">shorts::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-729" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/shorts.rs.html#379">source</a><a href="#associatedtype.Reader-729" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../usbd/shorts/struct.R.html" title="struct nrf52840_pac::usbd::shorts::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EPOUT_SPEC-1" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/size/epout.rs.html#67-69">source</a><a href="#impl-Readable-for-EPOUT_SPEC-1" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::usbd::size::epout::<a class="struct" href="../usbd/size/epout/struct.EPOUT_SPEC.html" title="struct nrf52840_pac::usbd::size::epout::EPOUT_SPEC">EPOUT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../usbd/size/epout/struct.R.html" title="struct nrf52840_pac::usbd::size::epout::R">epout::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-730" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/size/epout.rs.html#68">source</a><a href="#associatedtype.Reader-730" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../usbd/size/epout/struct.R.html" title="struct nrf52840_pac::usbd::size::epout::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-ISOOUT_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/size/isoout.rs.html#72-74">source</a><a href="#impl-Readable-for-ISOOUT_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../usbd/size/isoout/struct.ISOOUT_SPEC.html" title="struct nrf52840_pac::usbd::size::isoout::ISOOUT_SPEC">ISOOUT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../usbd/size/isoout/struct.R.html" title="struct nrf52840_pac::usbd::size::isoout::R">isoout::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-731" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/size/isoout.rs.html#73">source</a><a href="#associatedtype.Reader-731" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../usbd/size/isoout/struct.R.html" title="struct nrf52840_pac::usbd::size::isoout::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-USBADDR_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/usbaddr.rs.html#31-33">source</a><a href="#impl-Readable-for-USBADDR_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../usbd/usbaddr/struct.USBADDR_SPEC.html" title="struct nrf52840_pac::usbd::usbaddr::USBADDR_SPEC">USBADDR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../usbd/usbaddr/struct.R.html" title="struct nrf52840_pac::usbd::usbaddr::R">usbaddr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-732" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/usbaddr.rs.html#32">source</a><a href="#associatedtype.Reader-732" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../usbd/usbaddr/struct.R.html" title="struct nrf52840_pac::usbd::usbaddr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-USBPULLUP_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/usbpullup.rs.html#113-115">source</a><a href="#impl-Readable-for-USBPULLUP_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../usbd/usbpullup/struct.USBPULLUP_SPEC.html" title="struct nrf52840_pac::usbd::usbpullup::USBPULLUP_SPEC">USBPULLUP_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../usbd/usbpullup/struct.R.html" title="struct nrf52840_pac::usbd::usbpullup::R">usbpullup::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-733" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/usbpullup.rs.html#114">source</a><a href="#associatedtype.Reader-733" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../usbd/usbpullup/struct.R.html" title="struct nrf52840_pac::usbd::usbpullup::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-WINDEXH_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/windexh.rs.html#31-33">source</a><a href="#impl-Readable-for-WINDEXH_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../usbd/windexh/struct.WINDEXH_SPEC.html" title="struct nrf52840_pac::usbd::windexh::WINDEXH_SPEC">WINDEXH_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../usbd/windexh/struct.R.html" title="struct nrf52840_pac::usbd::windexh::R">windexh::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-734" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/windexh.rs.html#32">source</a><a href="#associatedtype.Reader-734" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../usbd/windexh/struct.R.html" title="struct nrf52840_pac::usbd::windexh::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-WINDEXL_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/windexl.rs.html#31-33">source</a><a href="#impl-Readable-for-WINDEXL_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../usbd/windexl/struct.WINDEXL_SPEC.html" title="struct nrf52840_pac::usbd::windexl::WINDEXL_SPEC">WINDEXL_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../usbd/windexl/struct.R.html" title="struct nrf52840_pac::usbd::windexl::R">windexl::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-735" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/windexl.rs.html#32">source</a><a href="#associatedtype.Reader-735" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../usbd/windexl/struct.R.html" title="struct nrf52840_pac::usbd::windexl::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-WLENGTHH_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/wlengthh.rs.html#31-33">source</a><a href="#impl-Readable-for-WLENGTHH_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../usbd/wlengthh/struct.WLENGTHH_SPEC.html" title="struct nrf52840_pac::usbd::wlengthh::WLENGTHH_SPEC">WLENGTHH_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../usbd/wlengthh/struct.R.html" title="struct nrf52840_pac::usbd::wlengthh::R">wlengthh::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-736" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/wlengthh.rs.html#32">source</a><a href="#associatedtype.Reader-736" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../usbd/wlengthh/struct.R.html" title="struct nrf52840_pac::usbd::wlengthh::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-WLENGTHL_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/wlengthl.rs.html#31-33">source</a><a href="#impl-Readable-for-WLENGTHL_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../usbd/wlengthl/struct.WLENGTHL_SPEC.html" title="struct nrf52840_pac::usbd::wlengthl::WLENGTHL_SPEC">WLENGTHL_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../usbd/wlengthl/struct.R.html" title="struct nrf52840_pac::usbd::wlengthl::R">wlengthl::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-737" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/wlengthl.rs.html#32">source</a><a href="#associatedtype.Reader-737" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../usbd/wlengthl/struct.R.html" title="struct nrf52840_pac::usbd::wlengthl::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-WVALUEH_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/wvalueh.rs.html#31-33">source</a><a href="#impl-Readable-for-WVALUEH_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../usbd/wvalueh/struct.WVALUEH_SPEC.html" title="struct nrf52840_pac::usbd::wvalueh::WVALUEH_SPEC">WVALUEH_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../usbd/wvalueh/struct.R.html" title="struct nrf52840_pac::usbd::wvalueh::R">wvalueh::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-738" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/wvalueh.rs.html#32">source</a><a href="#associatedtype.Reader-738" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../usbd/wvalueh/struct.R.html" title="struct nrf52840_pac::usbd::wvalueh::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-WVALUEL_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/wvaluel.rs.html#31-33">source</a><a href="#impl-Readable-for-WVALUEL_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../usbd/wvaluel/struct.WVALUEL_SPEC.html" title="struct nrf52840_pac::usbd::wvaluel::WVALUEL_SPEC">WVALUEL_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../usbd/wvaluel/struct.R.html" title="struct nrf52840_pac::usbd::wvaluel::R">wvaluel::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-739" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/usbd/wvaluel.rs.html#32">source</a><a href="#associatedtype.Reader-739" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../usbd/wvaluel/struct.R.html" title="struct nrf52840_pac::usbd::wvaluel::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-CONFIG_SPEC-10" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/wdt/config.rs.html#173-175">source</a><a href="#impl-Readable-for-CONFIG_SPEC-10" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::wdt::config::<a class="struct" href="../wdt/config/struct.CONFIG_SPEC.html" title="struct nrf52840_pac::wdt::config::CONFIG_SPEC">CONFIG_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../wdt/config/struct.R.html" title="struct nrf52840_pac::wdt::config::R">config::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-740" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/wdt/config.rs.html#174">source</a><a href="#associatedtype.Reader-740" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../wdt/config/struct.R.html" title="struct nrf52840_pac::wdt::config::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-CRV_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/wdt/crv.rs.html#67-69">source</a><a href="#impl-Readable-for-CRV_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../wdt/crv/struct.CRV_SPEC.html" title="struct nrf52840_pac::wdt::crv::CRV_SPEC">CRV_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../wdt/crv/struct.R.html" title="struct nrf52840_pac::wdt::crv::R">crv::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-741" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/wdt/crv.rs.html#68">source</a><a href="#associatedtype.Reader-741" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../wdt/crv/struct.R.html" title="struct nrf52840_pac::wdt::crv::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-EVENTS_TIMEOUT_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/wdt/events_timeout.rs.html#68-70">source</a><a href="#impl-Readable-for-EVENTS_TIMEOUT_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../wdt/events_timeout/struct.EVENTS_TIMEOUT_SPEC.html" title="struct nrf52840_pac::wdt::events_timeout::EVENTS_TIMEOUT_SPEC">EVENTS_TIMEOUT_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../wdt/events_timeout/struct.R.html" title="struct nrf52840_pac::wdt::events_timeout::R">events_timeout::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-742" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/wdt/events_timeout.rs.html#69">source</a><a href="#associatedtype.Reader-742" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../wdt/events_timeout/struct.R.html" title="struct nrf52840_pac::wdt::events_timeout::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENCLR_SPEC-32" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/wdt/intenclr.rs.html#120-122">source</a><a href="#impl-Readable-for-INTENCLR_SPEC-32" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::wdt::intenclr::<a class="struct" href="../wdt/intenclr/struct.INTENCLR_SPEC.html" title="struct nrf52840_pac::wdt::intenclr::INTENCLR_SPEC">INTENCLR_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../wdt/intenclr/struct.R.html" title="struct nrf52840_pac::wdt::intenclr::R">intenclr::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-743" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/wdt/intenclr.rs.html#121">source</a><a href="#associatedtype.Reader-743" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../wdt/intenclr/struct.R.html" title="struct nrf52840_pac::wdt::intenclr::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-INTENSET_SPEC-32" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/wdt/intenset.rs.html#120-122">source</a><a href="#impl-Readable-for-INTENSET_SPEC-32" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for nrf52840_pac::wdt::intenset::<a class="struct" href="../wdt/intenset/struct.INTENSET_SPEC.html" title="struct nrf52840_pac::wdt::intenset::INTENSET_SPEC">INTENSET_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../wdt/intenset/struct.R.html" title="struct nrf52840_pac::wdt::intenset::R">intenset::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-744" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/wdt/intenset.rs.html#121">source</a><a href="#associatedtype.Reader-744" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../wdt/intenset/struct.R.html" title="struct nrf52840_pac::wdt::intenset::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-REQSTATUS_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/wdt/reqstatus.rs.html#392-394">source</a><a href="#impl-Readable-for-REQSTATUS_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../wdt/reqstatus/struct.REQSTATUS_SPEC.html" title="struct nrf52840_pac::wdt::reqstatus::REQSTATUS_SPEC">REQSTATUS_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../wdt/reqstatus/struct.R.html" title="struct nrf52840_pac::wdt::reqstatus::R">reqstatus::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-745" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/wdt/reqstatus.rs.html#393">source</a><a href="#associatedtype.Reader-745" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../wdt/reqstatus/struct.R.html" title="struct nrf52840_pac::wdt::reqstatus::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-RREN_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/wdt/rren.rs.html#605-607">source</a><a href="#impl-Readable-for-RREN_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../wdt/rren/struct.RREN_SPEC.html" title="struct nrf52840_pac::wdt::rren::RREN_SPEC">RREN_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../wdt/rren/struct.R.html" title="struct nrf52840_pac::wdt::rren::R">rren::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-746" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/wdt/rren.rs.html#606">source</a><a href="#associatedtype.Reader-746" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../wdt/rren/struct.R.html" title="struct nrf52840_pac::wdt::rren::R">R</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-Readable-for-RUNSTATUS_SPEC" class="impl"><a class="src rightside" href="../../src/nrf52840_pac/wdt/runstatus.rs.html#65-67">source</a><a href="#impl-Readable-for-RUNSTATUS_SPEC" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Readable.html" title="trait nrf52840_pac::generic::Readable">Readable</a> for <a class="struct" href="../wdt/runstatus/struct.RUNSTATUS_SPEC.html" title="struct nrf52840_pac::wdt::runstatus::RUNSTATUS_SPEC">RUNSTATUS_SPEC</a></h3></section></summary><div class="docblock"><p><code>read()</code> method returns <a href="../wdt/runstatus/struct.R.html" title="struct nrf52840_pac::wdt::runstatus::R">runstatus::R</a> reader structure</p>
|
||
</div><div class="impl-items"><section id="associatedtype.Reader-747" class="associatedtype trait-impl"><a class="src rightside" href="../../src/nrf52840_pac/wdt/runstatus.rs.html#66">source</a><a href="#associatedtype.Reader-747" class="anchor">§</a><h4 class="code-header">type <a href="#associatedtype.Reader" class="associatedtype">Reader</a> = <a class="struct" href="../wdt/runstatus/struct.R.html" title="struct nrf52840_pac::wdt::runstatus::R">R</a></h4></section></div></details></div><script src="../../trait.impl/nrf52840_pac/generic/trait.Readable.js" async></script></section></div></main></body></html> |