mirror of
https://github.com/edg-l/edlang.git
synced 2024-11-12 19:18:24 +00:00
10 lines
95 KiB
HTML
10 lines
95 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="A trait for types that can safely be converted from and to byte slices."><title>Pod in object::pod - Rust</title><link rel="preload" as="font" type="font/woff2" crossorigin href="../../static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2"><link rel="preload" as="font" type="font/woff2" crossorigin href="../../static.files/FiraSans-Regular-018c141bf0843ffd.woff2"><link rel="preload" as="font" type="font/woff2" crossorigin href="../../static.files/FiraSans-Medium-8f9a781e4970d388.woff2"><link rel="preload" as="font" type="font/woff2" crossorigin href="../../static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2"><link rel="preload" as="font" type="font/woff2" crossorigin href="../../static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2"><link rel="stylesheet" href="../../static.files/normalize-76eba96aa4d2e634.css"><link rel="stylesheet" href="../../static.files/rustdoc-ac92e1bbe349e143.css"><meta name="rustdoc-vars" data-root-path="../../" data-static-root-path="../../static.files/" data-current-crate="object" data-themes="" data-resource-suffix="" data-rustdoc-version="1.76.0 (07dca489a 2024-02-04)" data-channel="1.76.0" data-search-js="search-2b6ce74ff89ae146.js" data-settings-js="settings-4313503d2e1961c2.js" ><script src="../../static.files/storage-f2adc0d6ca4d09fb.js"></script><script defer src="sidebar-items.js"></script><script defer src="../../static.files/main-305769736d49e732.js"></script><noscript><link rel="stylesheet" href="../../static.files/noscript-feafe1bb7466e4bd.css"></noscript><link rel="alternate icon" type="image/png" href="../../static.files/favicon-16x16-8b506e7a72182f1c.png"><link rel="alternate icon" type="image/png" href="../../static.files/favicon-32x32-422f7d1d52889060.png"><link rel="icon" type="image/svg+xml" href="../../static.files/favicon-2c020d218678b618.svg"></head><body class="rustdoc 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">☰</button></nav><nav class="sidebar"><div class="sidebar-crate"><h2><a href="../../object/index.html">object</a><span class="version">0.32.2</span></h2></div><h2 class="location"><a href="#">Pod</a></h2><div class="sidebar-elems"><section><h3><a href="#foreign-impls">Implementations on Foreign Types</a></h3><ul class="block"><li><a href="#impl-Pod-for-u16">u16</a></li><li><a href="#impl-Pod-for-u32">u32</a></li><li><a href="#impl-Pod-for-u64">u64</a></li><li><a href="#impl-Pod-for-u8">u8</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 object::pod</a></h2></div></nav><div class="sidebar-resizer"></div>
|
||
<main><div class="width-limiter"><nav class="sub"><form class="search-form"><span></span><div id="sidebar-button" tabindex="-1"><a href="../../object/all.html" title="show sidebar"></a></div><input class="search-input" name="search" aria-label="Run search in the documentation" autocomplete="off" spellcheck="false" placeholder="Click or press ‘S’ to search, ‘?’ for more options…" type="search"><div id="help-button" tabindex="-1"><a href="../../help.html" title="help">?</a></div><div id="settings-menu" tabindex="-1"><a href="../../settings.html" title="settings"><img width="22" height="22" alt="Change settings" src="../../static.files/wheel-7b819b6101059cd0.svg"></a></div></form></nav><section id="main-content" class="content"><div class="main-heading"><h1>Trait <a href="../index.html">object</a>::<wbr><a href="index.html">pod</a>::<wbr><a class="trait" href="#">Pod</a><button id="copy-path" title="Copy item path to clipboard"><img src="../../static.files/clipboard-7571035ce49a181d.svg" width="19" height="18" alt="Copy item path"></button></h1><span class="out-of-band"><a class="src" href="../../src/object/pod.rs.html#22">source</a> · <button id="toggle-all-docs" title="collapse all docs">[<span>−</span>]</button></span></div><pre class="rust item-decl"><code>pub unsafe trait Pod: <a class="trait" href="https://doc.rust-lang.org/1.76.0/core/marker/trait.Copy.html" title="trait core::marker::Copy">Copy</a> + 'static { }</code></pre><details class="toggle top-doc" open><summary class="hideme"><span>Expand description</span></summary><div class="docblock"><p>A trait for types that can safely be converted from and to byte slices.</p>
|
||
<h2 id="safety"><a href="#safety">Safety</a></h2>
|
||
<p>A type that is <code>Pod</code> must:</p>
|
||
<ul>
|
||
<li>be <code>#[repr(C)]</code> or <code>#[repr(transparent)]</code></li>
|
||
<li>have no invalid byte values</li>
|
||
<li>have no padding</li>
|
||
</ul>
|
||
</div></details><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.76.0/reference/items/traits.html#object-safety">object safe</a>.</div><h2 id="foreign-impls" class="section-header">Implementations on Foreign Types<a href="#foreign-impls" class="anchor">§</a></h2><section id="impl-Pod-for-u8" class="impl"><a class="src rightside" href="../../src/object/pod.rs.html#157">source</a><a href="#impl-Pod-for-u8" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="primitive" href="https://doc.rust-lang.org/1.76.0/core/primitive.u8.html">u8</a></h3></section><section id="impl-Pod-for-u16" class="impl"><a class="src rightside" href="../../src/object/pod.rs.html#157">source</a><a href="#impl-Pod-for-u16" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="primitive" href="https://doc.rust-lang.org/1.76.0/core/primitive.u16.html">u16</a></h3></section><section id="impl-Pod-for-u32" class="impl"><a class="src rightside" href="../../src/object/pod.rs.html#157">source</a><a href="#impl-Pod-for-u32" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="primitive" href="https://doc.rust-lang.org/1.76.0/core/primitive.u32.html">u32</a></h3></section><section id="impl-Pod-for-u64" class="impl"><a class="src rightside" href="../../src/object/pod.rs.html#157">source</a><a href="#impl-Pod-for-u64" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="primitive" href="https://doc.rust-lang.org/1.76.0/core/primitive.u64.html">u64</a></h3></section><h2 id="implementors" class="section-header">Implementors<a href="#implementors" class="anchor">§</a></h2><div id="implementors-list"><section id="impl-Pod-for-AixFileHeader" class="impl"><a class="src rightside" href="../../src/object/archive.rs.html#91">source</a><a href="#impl-Pod-for-AixFileHeader" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../archive/struct.AixFileHeader.html" title="struct object::archive::AixFileHeader">AixFileHeader</a></h3></section><section id="impl-Pod-for-AixHeader" class="impl"><a class="src rightside" href="../../src/object/archive.rs.html#91">source</a><a href="#impl-Pod-for-AixHeader" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../archive/struct.AixHeader.html" title="struct object::archive::AixHeader">AixHeader</a></h3></section><section id="impl-Pod-for-AixMemberOffset" class="impl"><a class="src rightside" href="../../src/object/archive.rs.html#91">source</a><a href="#impl-Pod-for-AixMemberOffset" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../archive/struct.AixMemberOffset.html" title="struct object::archive::AixMemberOffset">AixMemberOffset</a></h3></section><section id="impl-Pod-for-Header" class="impl"><a class="src rightside" href="../../src/object/archive.rs.html#91">source</a><a href="#impl-Pod-for-Header" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../archive/struct.Header.html" title="struct object::archive::Header">Header</a></h3></section><section id="impl-Pod-for-FatArch32" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3249">source</a><a href="#impl-Pod-for-FatArch32" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.FatArch32.html" title="struct object::macho::FatArch32">FatArch32</a></h3></section><section id="impl-Pod-for-FatArch64" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3249">source</a><a href="#impl-Pod-for-FatArch64" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.FatArch64.html" title="struct object::macho::FatArch64">FatArch64</a></h3></section><section id="impl-Pod-for-FatHeader" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3249">source</a><a href="#impl-Pod-for-FatHeader" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.FatHeader.html" title="struct object::macho::FatHeader">FatHeader</a></h3></section><section id="impl-Pod-for-AnonObjectHeader" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-AnonObjectHeader" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.AnonObjectHeader.html" title="struct object::pe::AnonObjectHeader">AnonObjectHeader</a></h3></section><section id="impl-Pod-for-AnonObjectHeaderBigobj" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-AnonObjectHeaderBigobj" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.AnonObjectHeaderBigobj.html" title="struct object::pe::AnonObjectHeaderBigobj">AnonObjectHeaderBigobj</a></h3></section><section id="impl-Pod-for-AnonObjectHeaderV2" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-AnonObjectHeaderV2" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.AnonObjectHeaderV2.html" title="struct object::pe::AnonObjectHeaderV2">AnonObjectHeaderV2</a></h3></section><section id="impl-Pod-for-Guid" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-Guid" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.Guid.html" title="struct object::pe::Guid">Guid</a></h3></section><section id="impl-Pod-for-ImageAlpha64RuntimeFunctionEntry" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageAlpha64RuntimeFunctionEntry" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageAlpha64RuntimeFunctionEntry.html" title="struct object::pe::ImageAlpha64RuntimeFunctionEntry">ImageAlpha64RuntimeFunctionEntry</a></h3></section><section id="impl-Pod-for-ImageAlphaRuntimeFunctionEntry" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageAlphaRuntimeFunctionEntry" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageAlphaRuntimeFunctionEntry.html" title="struct object::pe::ImageAlphaRuntimeFunctionEntry">ImageAlphaRuntimeFunctionEntry</a></h3></section><section id="impl-Pod-for-ImageArchitectureEntry" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageArchitectureEntry" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageArchitectureEntry.html" title="struct object::pe::ImageArchitectureEntry">ImageArchitectureEntry</a></h3></section><section id="impl-Pod-for-ImageArchiveMemberHeader" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageArchiveMemberHeader" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageArchiveMemberHeader.html" title="struct object::pe::ImageArchiveMemberHeader">ImageArchiveMemberHeader</a></h3></section><section id="impl-Pod-for-ImageArm64RuntimeFunctionEntry" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageArm64RuntimeFunctionEntry" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageArm64RuntimeFunctionEntry.html" title="struct object::pe::ImageArm64RuntimeFunctionEntry">ImageArm64RuntimeFunctionEntry</a></h3></section><section id="impl-Pod-for-ImageArmRuntimeFunctionEntry" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageArmRuntimeFunctionEntry" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageArmRuntimeFunctionEntry.html" title="struct object::pe::ImageArmRuntimeFunctionEntry">ImageArmRuntimeFunctionEntry</a></h3></section><section id="impl-Pod-for-ImageAuxSymbolCrc" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageAuxSymbolCrc" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageAuxSymbolCrc.html" title="struct object::pe::ImageAuxSymbolCrc">ImageAuxSymbolCrc</a></h3></section><section id="impl-Pod-for-ImageAuxSymbolFunction" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageAuxSymbolFunction" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageAuxSymbolFunction.html" title="struct object::pe::ImageAuxSymbolFunction">ImageAuxSymbolFunction</a></h3></section><section id="impl-Pod-for-ImageAuxSymbolFunctionBeginEnd" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageAuxSymbolFunctionBeginEnd" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageAuxSymbolFunctionBeginEnd.html" title="struct object::pe::ImageAuxSymbolFunctionBeginEnd">ImageAuxSymbolFunctionBeginEnd</a></h3></section><section id="impl-Pod-for-ImageAuxSymbolSection" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageAuxSymbolSection" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageAuxSymbolSection.html" title="struct object::pe::ImageAuxSymbolSection">ImageAuxSymbolSection</a></h3></section><section id="impl-Pod-for-ImageAuxSymbolTokenDef" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageAuxSymbolTokenDef" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageAuxSymbolTokenDef.html" title="struct object::pe::ImageAuxSymbolTokenDef">ImageAuxSymbolTokenDef</a></h3></section><section id="impl-Pod-for-ImageAuxSymbolWeak" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageAuxSymbolWeak" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageAuxSymbolWeak.html" title="struct object::pe::ImageAuxSymbolWeak">ImageAuxSymbolWeak</a></h3></section><section id="impl-Pod-for-ImageBaseRelocation" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageBaseRelocation" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageBaseRelocation.html" title="struct object::pe::ImageBaseRelocation">ImageBaseRelocation</a></h3></section><section id="impl-Pod-for-ImageBoundForwarderRef" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageBoundForwarderRef" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageBoundForwarderRef.html" title="struct object::pe::ImageBoundForwarderRef">ImageBoundForwarderRef</a></h3></section><section id="impl-Pod-for-ImageBoundImportDescriptor" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageBoundImportDescriptor" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageBoundImportDescriptor.html" title="struct object::pe::ImageBoundImportDescriptor">ImageBoundImportDescriptor</a></h3></section><section id="impl-Pod-for-ImageCoffSymbolsHeader" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageCoffSymbolsHeader" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageCoffSymbolsHeader.html" title="struct object::pe::ImageCoffSymbolsHeader">ImageCoffSymbolsHeader</a></h3></section><section id="impl-Pod-for-ImageCor20Header" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageCor20Header" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageCor20Header.html" title="struct object::pe::ImageCor20Header">ImageCor20Header</a></h3></section><section id="impl-Pod-for-ImageDataDirectory" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageDataDirectory" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageDataDirectory.html" title="struct object::pe::ImageDataDirectory">ImageDataDirectory</a></h3></section><section id="impl-Pod-for-ImageDebugDirectory" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageDebugDirectory" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageDebugDirectory.html" title="struct object::pe::ImageDebugDirectory">ImageDebugDirectory</a></h3></section><section id="impl-Pod-for-ImageDebugMisc" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageDebugMisc" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageDebugMisc.html" title="struct object::pe::ImageDebugMisc">ImageDebugMisc</a></h3></section><section id="impl-Pod-for-ImageDelayloadDescriptor" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageDelayloadDescriptor" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageDelayloadDescriptor.html" title="struct object::pe::ImageDelayloadDescriptor">ImageDelayloadDescriptor</a></h3></section><section id="impl-Pod-for-ImageDosHeader" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageDosHeader" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageDosHeader.html" title="struct object::pe::ImageDosHeader">ImageDosHeader</a></h3></section><section id="impl-Pod-for-ImageDynamicRelocation32" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageDynamicRelocation32" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageDynamicRelocation32.html" title="struct object::pe::ImageDynamicRelocation32">ImageDynamicRelocation32</a></h3></section><section id="impl-Pod-for-ImageDynamicRelocation32V2" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageDynamicRelocation32V2" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageDynamicRelocation32V2.html" title="struct object::pe::ImageDynamicRelocation32V2">ImageDynamicRelocation32V2</a></h3></section><section id="impl-Pod-for-ImageDynamicRelocation64" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageDynamicRelocation64" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageDynamicRelocation64.html" title="struct object::pe::ImageDynamicRelocation64">ImageDynamicRelocation64</a></h3></section><section id="impl-Pod-for-ImageDynamicRelocation64V2" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageDynamicRelocation64V2" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageDynamicRelocation64V2.html" title="struct object::pe::ImageDynamicRelocation64V2">ImageDynamicRelocation64V2</a></h3></section><section id="impl-Pod-for-ImageDynamicRelocationTable" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageDynamicRelocationTable" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageDynamicRelocationTable.html" title="struct object::pe::ImageDynamicRelocationTable">ImageDynamicRelocationTable</a></h3></section><section id="impl-Pod-for-ImageEnclaveConfig32" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageEnclaveConfig32" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageEnclaveConfig32.html" title="struct object::pe::ImageEnclaveConfig32">ImageEnclaveConfig32</a></h3></section><section id="impl-Pod-for-ImageEnclaveConfig64" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageEnclaveConfig64" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageEnclaveConfig64.html" title="struct object::pe::ImageEnclaveConfig64">ImageEnclaveConfig64</a></h3></section><section id="impl-Pod-for-ImageEnclaveImport" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageEnclaveImport" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageEnclaveImport.html" title="struct object::pe::ImageEnclaveImport">ImageEnclaveImport</a></h3></section><section id="impl-Pod-for-ImageEpilogueDynamicRelocationHeader" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageEpilogueDynamicRelocationHeader" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageEpilogueDynamicRelocationHeader.html" title="struct object::pe::ImageEpilogueDynamicRelocationHeader">ImageEpilogueDynamicRelocationHeader</a></h3></section><section id="impl-Pod-for-ImageExportDirectory" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageExportDirectory" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageExportDirectory.html" title="struct object::pe::ImageExportDirectory">ImageExportDirectory</a></h3></section><section id="impl-Pod-for-ImageFileHeader" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageFileHeader" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageFileHeader.html" title="struct object::pe::ImageFileHeader">ImageFileHeader</a></h3></section><section id="impl-Pod-for-ImageFunctionEntry64" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageFunctionEntry64" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageFunctionEntry64.html" title="struct object::pe::ImageFunctionEntry64">ImageFunctionEntry64</a></h3></section><section id="impl-Pod-for-ImageFunctionEntry" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageFunctionEntry" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageFunctionEntry.html" title="struct object::pe::ImageFunctionEntry">ImageFunctionEntry</a></h3></section><section id="impl-Pod-for-ImageHotPatchBase" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageHotPatchBase" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageHotPatchBase.html" title="struct object::pe::ImageHotPatchBase">ImageHotPatchBase</a></h3></section><section id="impl-Pod-for-ImageHotPatchHashes" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageHotPatchHashes" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageHotPatchHashes.html" title="struct object::pe::ImageHotPatchHashes">ImageHotPatchHashes</a></h3></section><section id="impl-Pod-for-ImageHotPatchInfo" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageHotPatchInfo" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageHotPatchInfo.html" title="struct object::pe::ImageHotPatchInfo">ImageHotPatchInfo</a></h3></section><section id="impl-Pod-for-ImageImportByName" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageImportByName" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageImportByName.html" title="struct object::pe::ImageImportByName">ImageImportByName</a></h3></section><section id="impl-Pod-for-ImageImportDescriptor" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageImportDescriptor" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageImportDescriptor.html" title="struct object::pe::ImageImportDescriptor">ImageImportDescriptor</a></h3></section><section id="impl-Pod-for-ImageLinenumber" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageLinenumber" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageLinenumber.html" title="struct object::pe::ImageLinenumber">ImageLinenumber</a></h3></section><section id="impl-Pod-for-ImageLoadConfigCodeIntegrity" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageLoadConfigCodeIntegrity" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageLoadConfigCodeIntegrity.html" title="struct object::pe::ImageLoadConfigCodeIntegrity">ImageLoadConfigCodeIntegrity</a></h3></section><section id="impl-Pod-for-ImageLoadConfigDirectory32" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageLoadConfigDirectory32" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageLoadConfigDirectory32.html" title="struct object::pe::ImageLoadConfigDirectory32">ImageLoadConfigDirectory32</a></h3></section><section id="impl-Pod-for-ImageLoadConfigDirectory64" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageLoadConfigDirectory64" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageLoadConfigDirectory64.html" title="struct object::pe::ImageLoadConfigDirectory64">ImageLoadConfigDirectory64</a></h3></section><section id="impl-Pod-for-ImageNtHeaders32" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageNtHeaders32" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageNtHeaders32.html" title="struct object::pe::ImageNtHeaders32">ImageNtHeaders32</a></h3></section><section id="impl-Pod-for-ImageNtHeaders64" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageNtHeaders64" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageNtHeaders64.html" title="struct object::pe::ImageNtHeaders64">ImageNtHeaders64</a></h3></section><section id="impl-Pod-for-ImageOptionalHeader32" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageOptionalHeader32" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageOptionalHeader32.html" title="struct object::pe::ImageOptionalHeader32">ImageOptionalHeader32</a></h3></section><section id="impl-Pod-for-ImageOptionalHeader64" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageOptionalHeader64" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageOptionalHeader64.html" title="struct object::pe::ImageOptionalHeader64">ImageOptionalHeader64</a></h3></section><section id="impl-Pod-for-ImageOs2Header" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageOs2Header" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageOs2Header.html" title="struct object::pe::ImageOs2Header">ImageOs2Header</a></h3></section><section id="impl-Pod-for-ImagePrologueDynamicRelocationHeader" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImagePrologueDynamicRelocationHeader" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImagePrologueDynamicRelocationHeader.html" title="struct object::pe::ImagePrologueDynamicRelocationHeader">ImagePrologueDynamicRelocationHeader</a></h3></section><section id="impl-Pod-for-ImageRelocation" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageRelocation" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageRelocation.html" title="struct object::pe::ImageRelocation">ImageRelocation</a></h3></section><section id="impl-Pod-for-ImageResourceDataEntry" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageResourceDataEntry" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageResourceDataEntry.html" title="struct object::pe::ImageResourceDataEntry">ImageResourceDataEntry</a></h3></section><section id="impl-Pod-for-ImageResourceDirStringU" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageResourceDirStringU" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageResourceDirStringU.html" title="struct object::pe::ImageResourceDirStringU">ImageResourceDirStringU</a></h3></section><section id="impl-Pod-for-ImageResourceDirectory" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageResourceDirectory" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageResourceDirectory.html" title="struct object::pe::ImageResourceDirectory">ImageResourceDirectory</a></h3></section><section id="impl-Pod-for-ImageResourceDirectoryEntry" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageResourceDirectoryEntry" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageResourceDirectoryEntry.html" title="struct object::pe::ImageResourceDirectoryEntry">ImageResourceDirectoryEntry</a></h3></section><section id="impl-Pod-for-ImageResourceDirectoryString" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageResourceDirectoryString" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageResourceDirectoryString.html" title="struct object::pe::ImageResourceDirectoryString">ImageResourceDirectoryString</a></h3></section><section id="impl-Pod-for-ImageRomHeaders" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageRomHeaders" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageRomHeaders.html" title="struct object::pe::ImageRomHeaders">ImageRomHeaders</a></h3></section><section id="impl-Pod-for-ImageRomOptionalHeader" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageRomOptionalHeader" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageRomOptionalHeader.html" title="struct object::pe::ImageRomOptionalHeader">ImageRomOptionalHeader</a></h3></section><section id="impl-Pod-for-ImageRuntimeFunctionEntry" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageRuntimeFunctionEntry" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageRuntimeFunctionEntry.html" title="struct object::pe::ImageRuntimeFunctionEntry">ImageRuntimeFunctionEntry</a></h3></section><section id="impl-Pod-for-ImageSectionHeader" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageSectionHeader" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageSectionHeader.html" title="struct object::pe::ImageSectionHeader">ImageSectionHeader</a></h3></section><section id="impl-Pod-for-ImageSeparateDebugHeader" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageSeparateDebugHeader" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageSeparateDebugHeader.html" title="struct object::pe::ImageSeparateDebugHeader">ImageSeparateDebugHeader</a></h3></section><section id="impl-Pod-for-ImageSymbol" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageSymbol" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageSymbol.html" title="struct object::pe::ImageSymbol">ImageSymbol</a></h3></section><section id="impl-Pod-for-ImageSymbolBytes" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageSymbolBytes" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageSymbolBytes.html" title="struct object::pe::ImageSymbolBytes">ImageSymbolBytes</a></h3></section><section id="impl-Pod-for-ImageSymbolEx" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageSymbolEx" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageSymbolEx.html" title="struct object::pe::ImageSymbolEx">ImageSymbolEx</a></h3></section><section id="impl-Pod-for-ImageSymbolExBytes" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageSymbolExBytes" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageSymbolExBytes.html" title="struct object::pe::ImageSymbolExBytes">ImageSymbolExBytes</a></h3></section><section id="impl-Pod-for-ImageThunkData32" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageThunkData32" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageThunkData32.html" title="struct object::pe::ImageThunkData32">ImageThunkData32</a></h3></section><section id="impl-Pod-for-ImageThunkData64" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageThunkData64" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageThunkData64.html" title="struct object::pe::ImageThunkData64">ImageThunkData64</a></h3></section><section id="impl-Pod-for-ImageTlsDirectory32" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageTlsDirectory32" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageTlsDirectory32.html" title="struct object::pe::ImageTlsDirectory32">ImageTlsDirectory32</a></h3></section><section id="impl-Pod-for-ImageTlsDirectory64" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageTlsDirectory64" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageTlsDirectory64.html" title="struct object::pe::ImageTlsDirectory64">ImageTlsDirectory64</a></h3></section><section id="impl-Pod-for-ImageVxdHeader" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImageVxdHeader" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImageVxdHeader.html" title="struct object::pe::ImageVxdHeader">ImageVxdHeader</a></h3></section><section id="impl-Pod-for-ImportObjectHeader" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-ImportObjectHeader" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.ImportObjectHeader.html" title="struct object::pe::ImportObjectHeader">ImportObjectHeader</a></h3></section><section id="impl-Pod-for-MaskedRichHeaderEntry" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-MaskedRichHeaderEntry" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.MaskedRichHeaderEntry.html" title="struct object::pe::MaskedRichHeaderEntry">MaskedRichHeaderEntry</a></h3></section><section id="impl-Pod-for-NonPagedDebugInfo" class="impl"><a class="src rightside" href="../../src/object/pe.rs.html#2972-3056">source</a><a href="#impl-Pod-for-NonPagedDebugInfo" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../pe/struct.NonPagedDebugInfo.html" title="struct object::pe::NonPagedDebugInfo">NonPagedDebugInfo</a></h3></section><section id="impl-Pod-for-CompressionHeader32%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/elf.rs.html#6259-6287">source</a><a href="#impl-Pod-for-CompressionHeader32%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../elf/struct.CompressionHeader32.html" title="struct object::elf::CompressionHeader32">CompressionHeader32</a><E></h3></section><section id="impl-Pod-for-CompressionHeader64%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/elf.rs.html#6259-6287">source</a><a href="#impl-Pod-for-CompressionHeader64%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../elf/struct.CompressionHeader64.html" title="struct object::elf::CompressionHeader64">CompressionHeader64</a><E></h3></section><section id="impl-Pod-for-Dyn32%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/elf.rs.html#6259-6287">source</a><a href="#impl-Pod-for-Dyn32%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../elf/struct.Dyn32.html" title="struct object::elf::Dyn32">Dyn32</a><E></h3></section><section id="impl-Pod-for-Dyn64%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/elf.rs.html#6259-6287">source</a><a href="#impl-Pod-for-Dyn64%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../elf/struct.Dyn64.html" title="struct object::elf::Dyn64">Dyn64</a><E></h3></section><section id="impl-Pod-for-FileHeader32%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/elf.rs.html#6259-6287">source</a><a href="#impl-Pod-for-FileHeader32%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../elf/struct.FileHeader32.html" title="struct object::elf::FileHeader32">FileHeader32</a><E></h3></section><section id="impl-Pod-for-FileHeader64%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/elf.rs.html#6259-6287">source</a><a href="#impl-Pod-for-FileHeader64%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../elf/struct.FileHeader64.html" title="struct object::elf::FileHeader64">FileHeader64</a><E></h3></section><section id="impl-Pod-for-GnuHashHeader%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/elf.rs.html#6259-6287">source</a><a href="#impl-Pod-for-GnuHashHeader%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../elf/struct.GnuHashHeader.html" title="struct object::elf::GnuHashHeader">GnuHashHeader</a><E></h3></section><section id="impl-Pod-for-HashHeader%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/elf.rs.html#6259-6287">source</a><a href="#impl-Pod-for-HashHeader%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../elf/struct.HashHeader.html" title="struct object::elf::HashHeader">HashHeader</a><E></h3></section><section id="impl-Pod-for-NoteHeader32%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/elf.rs.html#6259-6287">source</a><a href="#impl-Pod-for-NoteHeader32%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../elf/struct.NoteHeader32.html" title="struct object::elf::NoteHeader32">NoteHeader32</a><E></h3></section><section id="impl-Pod-for-NoteHeader64%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/elf.rs.html#6259-6287">source</a><a href="#impl-Pod-for-NoteHeader64%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../elf/struct.NoteHeader64.html" title="struct object::elf::NoteHeader64">NoteHeader64</a><E></h3></section><section id="impl-Pod-for-ProgramHeader32%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/elf.rs.html#6259-6287">source</a><a href="#impl-Pod-for-ProgramHeader32%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../elf/struct.ProgramHeader32.html" title="struct object::elf::ProgramHeader32">ProgramHeader32</a><E></h3></section><section id="impl-Pod-for-ProgramHeader64%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/elf.rs.html#6259-6287">source</a><a href="#impl-Pod-for-ProgramHeader64%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../elf/struct.ProgramHeader64.html" title="struct object::elf::ProgramHeader64">ProgramHeader64</a><E></h3></section><section id="impl-Pod-for-Rel32%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/elf.rs.html#6259-6287">source</a><a href="#impl-Pod-for-Rel32%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../elf/struct.Rel32.html" title="struct object::elf::Rel32">Rel32</a><E></h3></section><section id="impl-Pod-for-Rel64%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/elf.rs.html#6259-6287">source</a><a href="#impl-Pod-for-Rel64%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../elf/struct.Rel64.html" title="struct object::elf::Rel64">Rel64</a><E></h3></section><section id="impl-Pod-for-Rela32%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/elf.rs.html#6259-6287">source</a><a href="#impl-Pod-for-Rela32%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../elf/struct.Rela32.html" title="struct object::elf::Rela32">Rela32</a><E></h3></section><section id="impl-Pod-for-Rela64%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/elf.rs.html#6259-6287">source</a><a href="#impl-Pod-for-Rela64%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../elf/struct.Rela64.html" title="struct object::elf::Rela64">Rela64</a><E></h3></section><section id="impl-Pod-for-SectionHeader32%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/elf.rs.html#6259-6287">source</a><a href="#impl-Pod-for-SectionHeader32%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../elf/struct.SectionHeader32.html" title="struct object::elf::SectionHeader32">SectionHeader32</a><E></h3></section><section id="impl-Pod-for-SectionHeader64%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/elf.rs.html#6259-6287">source</a><a href="#impl-Pod-for-SectionHeader64%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../elf/struct.SectionHeader64.html" title="struct object::elf::SectionHeader64">SectionHeader64</a><E></h3></section><section id="impl-Pod-for-Sym32%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/elf.rs.html#6259-6287">source</a><a href="#impl-Pod-for-Sym32%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../elf/struct.Sym32.html" title="struct object::elf::Sym32">Sym32</a><E></h3></section><section id="impl-Pod-for-Sym64%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/elf.rs.html#6259-6287">source</a><a href="#impl-Pod-for-Sym64%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../elf/struct.Sym64.html" title="struct object::elf::Sym64">Sym64</a><E></h3></section><section id="impl-Pod-for-Syminfo32%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/elf.rs.html#6259-6287">source</a><a href="#impl-Pod-for-Syminfo32%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../elf/struct.Syminfo32.html" title="struct object::elf::Syminfo32">Syminfo32</a><E></h3></section><section id="impl-Pod-for-Syminfo64%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/elf.rs.html#6259-6287">source</a><a href="#impl-Pod-for-Syminfo64%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../elf/struct.Syminfo64.html" title="struct object::elf::Syminfo64">Syminfo64</a><E></h3></section><section id="impl-Pod-for-Verdaux%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/elf.rs.html#6259-6287">source</a><a href="#impl-Pod-for-Verdaux%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../elf/struct.Verdaux.html" title="struct object::elf::Verdaux">Verdaux</a><E></h3></section><section id="impl-Pod-for-Verdef%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/elf.rs.html#6259-6287">source</a><a href="#impl-Pod-for-Verdef%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../elf/struct.Verdef.html" title="struct object::elf::Verdef">Verdef</a><E></h3></section><section id="impl-Pod-for-Vernaux%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/elf.rs.html#6259-6287">source</a><a href="#impl-Pod-for-Vernaux%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../elf/struct.Vernaux.html" title="struct object::elf::Vernaux">Vernaux</a><E></h3></section><section id="impl-Pod-for-Verneed%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/elf.rs.html#6259-6287">source</a><a href="#impl-Pod-for-Verneed%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../elf/struct.Verneed.html" title="struct object::elf::Verneed">Verneed</a><E></h3></section><section id="impl-Pod-for-Versym%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/elf.rs.html#6259-6287">source</a><a href="#impl-Pod-for-Versym%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../elf/struct.Versym.html" title="struct object::elf::Versym">Versym</a><E></h3></section><section id="impl-Pod-for-I16Bytes%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/endian.rs.html#831">source</a><a href="#impl-Pod-for-I16Bytes%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../endian/struct.I16Bytes.html" title="struct object::endian::I16Bytes">I16Bytes</a><E></h3></section><section id="impl-Pod-for-I32Bytes%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/endian.rs.html#831">source</a><a href="#impl-Pod-for-I32Bytes%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../endian/struct.I32Bytes.html" title="struct object::endian::I32Bytes">I32Bytes</a><E></h3></section><section id="impl-Pod-for-I64Bytes%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/endian.rs.html#831">source</a><a href="#impl-Pod-for-I64Bytes%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../endian/struct.I64Bytes.html" title="struct object::endian::I64Bytes">I64Bytes</a><E></h3></section><section id="impl-Pod-for-U16Bytes%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/endian.rs.html#831">source</a><a href="#impl-Pod-for-U16Bytes%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../endian/struct.U16Bytes.html" title="struct object::endian::U16Bytes">U16Bytes</a><E></h3></section><section id="impl-Pod-for-U32Bytes%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/endian.rs.html#831">source</a><a href="#impl-Pod-for-U32Bytes%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../endian/struct.U32Bytes.html" title="struct object::endian::U32Bytes">U32Bytes</a><E></h3></section><section id="impl-Pod-for-U64Bytes%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/endian.rs.html#831">source</a><a href="#impl-Pod-for-U64Bytes%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../endian/struct.U64Bytes.html" title="struct object::endian::U64Bytes">U64Bytes</a><E></h3></section><section id="impl-Pod-for-BuildToolVersion%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3250-3307">source</a><a href="#impl-Pod-for-BuildToolVersion%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.BuildToolVersion.html" title="struct object::macho::BuildToolVersion">BuildToolVersion</a><E></h3></section><section id="impl-Pod-for-BuildVersionCommand%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3250-3307">source</a><a href="#impl-Pod-for-BuildVersionCommand%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.BuildVersionCommand.html" title="struct object::macho::BuildVersionCommand">BuildVersionCommand</a><E></h3></section><section id="impl-Pod-for-DataInCodeEntry%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3250-3307">source</a><a href="#impl-Pod-for-DataInCodeEntry%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.DataInCodeEntry.html" title="struct object::macho::DataInCodeEntry">DataInCodeEntry</a><E></h3></section><section id="impl-Pod-for-DyldCacheHeader%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3250-3307">source</a><a href="#impl-Pod-for-DyldCacheHeader%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.DyldCacheHeader.html" title="struct object::macho::DyldCacheHeader">DyldCacheHeader</a><E></h3></section><section id="impl-Pod-for-DyldCacheImageInfo%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3250-3307">source</a><a href="#impl-Pod-for-DyldCacheImageInfo%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.DyldCacheImageInfo.html" title="struct object::macho::DyldCacheImageInfo">DyldCacheImageInfo</a><E></h3></section><section id="impl-Pod-for-DyldCacheMappingInfo%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3250-3307">source</a><a href="#impl-Pod-for-DyldCacheMappingInfo%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.DyldCacheMappingInfo.html" title="struct object::macho::DyldCacheMappingInfo">DyldCacheMappingInfo</a><E></h3></section><section id="impl-Pod-for-DyldInfoCommand%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3250-3307">source</a><a href="#impl-Pod-for-DyldInfoCommand%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.DyldInfoCommand.html" title="struct object::macho::DyldInfoCommand">DyldInfoCommand</a><E></h3></section><section id="impl-Pod-for-DyldSubCacheInfo%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3250-3307">source</a><a href="#impl-Pod-for-DyldSubCacheInfo%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.DyldSubCacheInfo.html" title="struct object::macho::DyldSubCacheInfo">DyldSubCacheInfo</a><E></h3></section><section id="impl-Pod-for-Dylib%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3250-3307">source</a><a href="#impl-Pod-for-Dylib%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.Dylib.html" title="struct object::macho::Dylib">Dylib</a><E></h3></section><section id="impl-Pod-for-DylibCommand%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3250-3307">source</a><a href="#impl-Pod-for-DylibCommand%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.DylibCommand.html" title="struct object::macho::DylibCommand">DylibCommand</a><E></h3></section><section id="impl-Pod-for-DylibModule32%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3250-3307">source</a><a href="#impl-Pod-for-DylibModule32%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.DylibModule32.html" title="struct object::macho::DylibModule32">DylibModule32</a><E></h3></section><section id="impl-Pod-for-DylibModule64%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3250-3307">source</a><a href="#impl-Pod-for-DylibModule64%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.DylibModule64.html" title="struct object::macho::DylibModule64">DylibModule64</a><E></h3></section><section id="impl-Pod-for-DylibReference%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3250-3307">source</a><a href="#impl-Pod-for-DylibReference%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.DylibReference.html" title="struct object::macho::DylibReference">DylibReference</a><E></h3></section><section id="impl-Pod-for-DylibTableOfContents%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3250-3307">source</a><a href="#impl-Pod-for-DylibTableOfContents%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.DylibTableOfContents.html" title="struct object::macho::DylibTableOfContents">DylibTableOfContents</a><E></h3></section><section id="impl-Pod-for-DylinkerCommand%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3250-3307">source</a><a href="#impl-Pod-for-DylinkerCommand%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.DylinkerCommand.html" title="struct object::macho::DylinkerCommand">DylinkerCommand</a><E></h3></section><section id="impl-Pod-for-DysymtabCommand%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3250-3307">source</a><a href="#impl-Pod-for-DysymtabCommand%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.DysymtabCommand.html" title="struct object::macho::DysymtabCommand">DysymtabCommand</a><E></h3></section><section id="impl-Pod-for-EncryptionInfoCommand32%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3250-3307">source</a><a href="#impl-Pod-for-EncryptionInfoCommand32%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.EncryptionInfoCommand32.html" title="struct object::macho::EncryptionInfoCommand32">EncryptionInfoCommand32</a><E></h3></section><section id="impl-Pod-for-EncryptionInfoCommand64%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3250-3307">source</a><a href="#impl-Pod-for-EncryptionInfoCommand64%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.EncryptionInfoCommand64.html" title="struct object::macho::EncryptionInfoCommand64">EncryptionInfoCommand64</a><E></h3></section><section id="impl-Pod-for-EntryPointCommand%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3250-3307">source</a><a href="#impl-Pod-for-EntryPointCommand%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.EntryPointCommand.html" title="struct object::macho::EntryPointCommand">EntryPointCommand</a><E></h3></section><section id="impl-Pod-for-FilesetEntryCommand%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3250-3307">source</a><a href="#impl-Pod-for-FilesetEntryCommand%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.FilesetEntryCommand.html" title="struct object::macho::FilesetEntryCommand">FilesetEntryCommand</a><E></h3></section><section id="impl-Pod-for-FvmfileCommand%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3250-3307">source</a><a href="#impl-Pod-for-FvmfileCommand%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.FvmfileCommand.html" title="struct object::macho::FvmfileCommand">FvmfileCommand</a><E></h3></section><section id="impl-Pod-for-Fvmlib%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3250-3307">source</a><a href="#impl-Pod-for-Fvmlib%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.Fvmlib.html" title="struct object::macho::Fvmlib">Fvmlib</a><E></h3></section><section id="impl-Pod-for-FvmlibCommand%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3250-3307">source</a><a href="#impl-Pod-for-FvmlibCommand%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.FvmlibCommand.html" title="struct object::macho::FvmlibCommand">FvmlibCommand</a><E></h3></section><section id="impl-Pod-for-IdentCommand%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3250-3307">source</a><a href="#impl-Pod-for-IdentCommand%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.IdentCommand.html" title="struct object::macho::IdentCommand">IdentCommand</a><E></h3></section><section id="impl-Pod-for-LcStr%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3250-3307">source</a><a href="#impl-Pod-for-LcStr%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.LcStr.html" title="struct object::macho::LcStr">LcStr</a><E></h3></section><section id="impl-Pod-for-LinkeditDataCommand%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3250-3307">source</a><a href="#impl-Pod-for-LinkeditDataCommand%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.LinkeditDataCommand.html" title="struct object::macho::LinkeditDataCommand">LinkeditDataCommand</a><E></h3></section><section id="impl-Pod-for-LinkerOptionCommand%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3250-3307">source</a><a href="#impl-Pod-for-LinkerOptionCommand%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.LinkerOptionCommand.html" title="struct object::macho::LinkerOptionCommand">LinkerOptionCommand</a><E></h3></section><section id="impl-Pod-for-LoadCommand%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3250-3307">source</a><a href="#impl-Pod-for-LoadCommand%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.LoadCommand.html" title="struct object::macho::LoadCommand">LoadCommand</a><E></h3></section><section id="impl-Pod-for-MachHeader32%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3250-3307">source</a><a href="#impl-Pod-for-MachHeader32%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.MachHeader32.html" title="struct object::macho::MachHeader32">MachHeader32</a><E></h3></section><section id="impl-Pod-for-MachHeader64%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3250-3307">source</a><a href="#impl-Pod-for-MachHeader64%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.MachHeader64.html" title="struct object::macho::MachHeader64">MachHeader64</a><E></h3></section><section id="impl-Pod-for-Nlist32%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3250-3307">source</a><a href="#impl-Pod-for-Nlist32%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.Nlist32.html" title="struct object::macho::Nlist32">Nlist32</a><E></h3></section><section id="impl-Pod-for-Nlist64%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3250-3307">source</a><a href="#impl-Pod-for-Nlist64%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.Nlist64.html" title="struct object::macho::Nlist64">Nlist64</a><E></h3></section><section id="impl-Pod-for-NoteCommand%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3250-3307">source</a><a href="#impl-Pod-for-NoteCommand%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.NoteCommand.html" title="struct object::macho::NoteCommand">NoteCommand</a><E></h3></section><section id="impl-Pod-for-PrebindCksumCommand%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3250-3307">source</a><a href="#impl-Pod-for-PrebindCksumCommand%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.PrebindCksumCommand.html" title="struct object::macho::PrebindCksumCommand">PrebindCksumCommand</a><E></h3></section><section id="impl-Pod-for-PreboundDylibCommand%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3250-3307">source</a><a href="#impl-Pod-for-PreboundDylibCommand%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.PreboundDylibCommand.html" title="struct object::macho::PreboundDylibCommand">PreboundDylibCommand</a><E></h3></section><section id="impl-Pod-for-Relocation%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3250-3307">source</a><a href="#impl-Pod-for-Relocation%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.Relocation.html" title="struct object::macho::Relocation">Relocation</a><E></h3></section><section id="impl-Pod-for-RoutinesCommand32%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3250-3307">source</a><a href="#impl-Pod-for-RoutinesCommand32%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.RoutinesCommand32.html" title="struct object::macho::RoutinesCommand32">RoutinesCommand32</a><E></h3></section><section id="impl-Pod-for-RoutinesCommand64%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3250-3307">source</a><a href="#impl-Pod-for-RoutinesCommand64%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.RoutinesCommand64.html" title="struct object::macho::RoutinesCommand64">RoutinesCommand64</a><E></h3></section><section id="impl-Pod-for-RpathCommand%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3250-3307">source</a><a href="#impl-Pod-for-RpathCommand%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.RpathCommand.html" title="struct object::macho::RpathCommand">RpathCommand</a><E></h3></section><section id="impl-Pod-for-Section32%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3250-3307">source</a><a href="#impl-Pod-for-Section32%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.Section32.html" title="struct object::macho::Section32">Section32</a><E></h3></section><section id="impl-Pod-for-Section64%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3250-3307">source</a><a href="#impl-Pod-for-Section64%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.Section64.html" title="struct object::macho::Section64">Section64</a><E></h3></section><section id="impl-Pod-for-SegmentCommand32%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3250-3307">source</a><a href="#impl-Pod-for-SegmentCommand32%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.SegmentCommand32.html" title="struct object::macho::SegmentCommand32">SegmentCommand32</a><E></h3></section><section id="impl-Pod-for-SegmentCommand64%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3250-3307">source</a><a href="#impl-Pod-for-SegmentCommand64%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.SegmentCommand64.html" title="struct object::macho::SegmentCommand64">SegmentCommand64</a><E></h3></section><section id="impl-Pod-for-SourceVersionCommand%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3250-3307">source</a><a href="#impl-Pod-for-SourceVersionCommand%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.SourceVersionCommand.html" title="struct object::macho::SourceVersionCommand">SourceVersionCommand</a><E></h3></section><section id="impl-Pod-for-SubClientCommand%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3250-3307">source</a><a href="#impl-Pod-for-SubClientCommand%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.SubClientCommand.html" title="struct object::macho::SubClientCommand">SubClientCommand</a><E></h3></section><section id="impl-Pod-for-SubFrameworkCommand%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3250-3307">source</a><a href="#impl-Pod-for-SubFrameworkCommand%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.SubFrameworkCommand.html" title="struct object::macho::SubFrameworkCommand">SubFrameworkCommand</a><E></h3></section><section id="impl-Pod-for-SubLibraryCommand%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3250-3307">source</a><a href="#impl-Pod-for-SubLibraryCommand%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.SubLibraryCommand.html" title="struct object::macho::SubLibraryCommand">SubLibraryCommand</a><E></h3></section><section id="impl-Pod-for-SubUmbrellaCommand%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3250-3307">source</a><a href="#impl-Pod-for-SubUmbrellaCommand%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.SubUmbrellaCommand.html" title="struct object::macho::SubUmbrellaCommand">SubUmbrellaCommand</a><E></h3></section><section id="impl-Pod-for-SymsegCommand%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3250-3307">source</a><a href="#impl-Pod-for-SymsegCommand%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.SymsegCommand.html" title="struct object::macho::SymsegCommand">SymsegCommand</a><E></h3></section><section id="impl-Pod-for-SymtabCommand%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3250-3307">source</a><a href="#impl-Pod-for-SymtabCommand%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.SymtabCommand.html" title="struct object::macho::SymtabCommand">SymtabCommand</a><E></h3></section><section id="impl-Pod-for-ThreadCommand%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3250-3307">source</a><a href="#impl-Pod-for-ThreadCommand%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.ThreadCommand.html" title="struct object::macho::ThreadCommand">ThreadCommand</a><E></h3></section><section id="impl-Pod-for-TwolevelHint%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3250-3307">source</a><a href="#impl-Pod-for-TwolevelHint%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.TwolevelHint.html" title="struct object::macho::TwolevelHint">TwolevelHint</a><E></h3></section><section id="impl-Pod-for-TwolevelHintsCommand%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3250-3307">source</a><a href="#impl-Pod-for-TwolevelHintsCommand%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.TwolevelHintsCommand.html" title="struct object::macho::TwolevelHintsCommand">TwolevelHintsCommand</a><E></h3></section><section id="impl-Pod-for-UuidCommand%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3250-3307">source</a><a href="#impl-Pod-for-UuidCommand%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.UuidCommand.html" title="struct object::macho::UuidCommand">UuidCommand</a><E></h3></section><section id="impl-Pod-for-VersionMinCommand%3CE%3E" class="impl"><a class="src rightside" href="../../src/object/macho.rs.html#3250-3307">source</a><a href="#impl-Pod-for-VersionMinCommand%3CE%3E" class="anchor">§</a><h3 class="code-header">impl<E: <a class="trait" href="../endian/trait.Endian.html" title="trait object::endian::Endian">Endian</a>> <a class="trait" href="trait.Pod.html" title="trait object::pod::Pod">Pod</a> for <a class="struct" href="../macho/struct.VersionMinCommand.html" title="struct object::macho::VersionMinCommand">VersionMinCommand</a><E></h3></section></div><script src="../../trait.impl/object/pod/trait.Pod.js" data-ignore-extern-crates="core" async></script></section></div></main></body></html> |