maplibre-rs/docs/api/maplibre/render/render_phase/trait.RenderCommand.html

48 lines
26 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!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="`RenderCommand` is a trait that runs an ECS query and produces one or more `TrackedRenderPass` calls. Types implementing this trait can be composed (as tuples)."><title>RenderCommand in maplibre::render::render_phase - Rust</title><script>if(window.location.protocol!=="file:")document.head.insertAdjacentHTML("beforeend","SourceSerif4-Regular-46f98efaafac5295.ttf.woff2,FiraSans-Regular-018c141bf0843ffd.woff2,FiraSans-Medium-8f9a781e4970d388.woff2,SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2,SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2".split(",").map(f=>`<link rel="preload" as="font" type="font/woff2" crossorigin href="../../../static.files/${f}">`).join(""))</script><link rel="stylesheet" href="../../../static.files/normalize-76eba96aa4d2e634.css"><link rel="stylesheet" href="../../../static.files/rustdoc-081576b923113409.css"><meta name="rustdoc-vars" data-root-path="../../../" data-static-root-path="../../../static.files/" data-current-crate="maplibre" data-themes="" data-resource-suffix="" data-rustdoc-version="1.79.0 (129f3b996 2024-06-10)" data-channel="1.79.0" data-search-js="search-bf21c90c8c1d92b1.js" data-settings-js="settings-4313503d2e1961c2.js" ><script src="../../../static.files/storage-e32f0c247825364d.js"></script><script defer src="sidebar-items.js"></script><script defer src="../../../static.files/main-20a3ad099b048cf2.js"></script><noscript><link rel="stylesheet" href="../../../static.files/noscript-09095024cf37855e.css"></noscript><link rel="alternate icon" type="image/png" href="../../../static.files/favicon-32x32-422f7d1d52889060.png"><link rel="icon" type="image/svg+xml" href="../../../static.files/favicon-2c020d218678b618.svg"></head><body class="rustdoc trait"><!--[if lte IE 11]><div class="warning">This old browser is unsupported and will most likely display funky things.</div><![endif]--><nav class="mobile-topbar"><button class="sidebar-menu-toggle" title="show sidebar"></button></nav><nav class="sidebar"><div class="sidebar-crate"><h2><a href="../../../maplibre/index.html">maplibre</a><span class="version">0.1.0</span></h2></div><h2 class="location"><a href="#">RenderCommand</a></h2><div class="sidebar-elems"><section><h3><a href="#required-methods">Required Methods</a></h3><ul class="block"><li><a href="#tymethod.render">render</a></li></ul><h3><a href="#foreign-impls">Implementations on Foreign Types</a></h3><ul class="block"><li><a href="#impl-RenderCommand%3CP%3E-for-(C0,+C1)">(C0, C1)</a></li><li><a href="#impl-RenderCommand%3CP%3E-for-(C0,+C1,+C2)">(C0, C1, C2)</a></li><li><a href="#impl-RenderCommand%3CP%3E-for-(C0,+C1,+C2,+C3)">(C0, C1, C2, C3)</a></li><li><a href="#impl-RenderCommand%3CP%3E-for-(C0,+C1,+C2,+C3,+C4)">(C0, C1, C2, C3, C4)</a></li><li><a href="#impl-RenderCommand%3CP%3E-for-(C0,)">(C0,)</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 maplibre::render::render_phase</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="../../../maplibre/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="Type S or / 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">Settings</a></div></form></nav><section id="main-content" class="content"><div class="main-heading"><h1>Trait <a href="../../index.html">maplibre</a>::<wbr><a href="../index.html">render</a>::<wbr><a href="index.html">render_phase</a>::<wbr><a class="trait" href="#">RenderCommand</a><button id="copy-path" title="Copy item path to clipboard">Copy item path</button></h1><span class="out-of-band"><a class="src" href="../../../src/maplibre/render/render_phase/draw.rs.html#47-55">source</a> · <button id="toggle-all-docs" title="collapse all docs">[<span>&#x2212;</span>]</button></span></div><pre class="rust item-decl"><code>pub trait RenderCommand&lt;P: <a class="trait" href="draw/trait.PhaseItem.html" title="trait maplibre::render::render_phase::draw::PhaseItem">PhaseItem</a>&gt; {
// Required method
fn <a href="#tymethod.render" class="fn">render</a>&lt;'w&gt;(
world: &amp;'w <a class="struct" href="../../tcs/world/struct.World.html" title="struct maplibre::tcs::world::World">World</a>,
item: <a class="primitive" href="https://doc.rust-lang.org/1.79.0/std/primitive.reference.html">&amp;P</a>,
pass: &amp;mut <a class="struct" href="../resource/tracked_render_pass/struct.TrackedRenderPass.html" title="struct maplibre::render::resource::tracked_render_pass::TrackedRenderPass">TrackedRenderPass</a>&lt;'w&gt;
) -&gt; <a class="enum" href="draw/enum.RenderCommandResult.html" title="enum maplibre::render::render_phase::draw::RenderCommandResult">RenderCommandResult</a>;
}</code></pre><details class="toggle top-doc" open><summary class="hideme"><span>Expand description</span></summary><div class="docblock"><p><a href="draw/trait.RenderCommand.html" title="trait maplibre::render::render_phase::draw::RenderCommand"><code>RenderCommand</code></a> is a trait that runs an ECS query and produces one or more
<a href="../resource/tracked_render_pass/struct.TrackedRenderPass.html" title="struct maplibre::render::resource::tracked_render_pass::TrackedRenderPass"><code>TrackedRenderPass</code></a> calls. Types implementing this trait can be composed (as tuples).</p>
<p>They can be registered as a <a href="draw/trait.Draw.html" title="trait maplibre::render::render_phase::draw::Draw"><code>Draw</code></a> function via the
[<code>AddRenderCommand::add_render_command</code>] method.</p>
<h2 id="example"><a class="doc-anchor" href="#example">§</a>Example</h2>
<p>The <code>DrawPbr</code> draw function is created from the following render command
tuple. Const generics are used to set specific bind group locations:</p>
<div class="example-wrap ignore"><a href="#" class="tooltip" title="This example is not tested"></a><pre class="rust rust-example-rendered"><code><span class="kw">pub type </span>DrawPbr = (
SetItemPipeline,
SetMeshViewBindGroup&lt;<span class="number">0</span>&gt;,
SetStandardMaterialBindGroup&lt;<span class="number">1</span>&gt;,
SetTransformBindGroup&lt;<span class="number">2</span>&gt;,
DrawMesh,
);</code></pre></div>
</div></details><h2 id="required-methods" class="section-header">Required Methods<a href="#required-methods" class="anchor">§</a></h2><div class="methods"><details class="toggle method-toggle" open><summary><section id="tymethod.render" class="method"><a class="src rightside" href="../../../src/maplibre/render/render_phase/draw.rs.html#50-54">source</a><h4 class="code-header">fn <a href="#tymethod.render" class="fn">render</a>&lt;'w&gt;(
world: &amp;'w <a class="struct" href="../../tcs/world/struct.World.html" title="struct maplibre::tcs::world::World">World</a>,
item: <a class="primitive" href="https://doc.rust-lang.org/1.79.0/std/primitive.reference.html">&amp;P</a>,
pass: &amp;mut <a class="struct" href="../resource/tracked_render_pass/struct.TrackedRenderPass.html" title="struct maplibre::render::resource::tracked_render_pass::TrackedRenderPass">TrackedRenderPass</a>&lt;'w&gt;
) -&gt; <a class="enum" href="draw/enum.RenderCommandResult.html" title="enum maplibre::render::render_phase::draw::RenderCommandResult">RenderCommandResult</a></h4></section></summary><div class="docblock"><p>Renders the <a href="draw/trait.PhaseItem.html" title="trait maplibre::render::render_phase::draw::PhaseItem"><code>PhaseItem</code></a> by issuing draw calls via the <a href="../resource/tracked_render_pass/struct.TrackedRenderPass.html" title="struct maplibre::render::resource::tracked_render_pass::TrackedRenderPass"><code>TrackedRenderPass</code></a>.</p>
</div></details></div><h2 id="object-safety" class="section-header">Object Safety<a href="#object-safety" class="anchor">§</a></h2><div class="object-safety-info">This trait is <b>not</b> <a href="https://doc.rust-lang.org/1.79.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><details class="toggle implementors-toggle"><summary><section id="impl-RenderCommand%3CP%3E-for-(C0,)" class="impl"><a class="src rightside" href="../../../src/maplibre/render/render_phase/draw.rs.html#80">source</a><a href="#impl-RenderCommand%3CP%3E-for-(C0,)" class="anchor">§</a><h3 class="code-header">impl&lt;P: <a class="trait" href="draw/trait.PhaseItem.html" title="trait maplibre::render::render_phase::draw::PhaseItem">PhaseItem</a>, C0: <a class="trait" href="draw/trait.RenderCommand.html" title="trait maplibre::render::render_phase::draw::RenderCommand">RenderCommand</a>&lt;P&gt;&gt; <a class="trait" href="draw/trait.RenderCommand.html" title="trait maplibre::render::render_phase::draw::RenderCommand">RenderCommand</a>&lt;P&gt; for <a class="primitive" href="https://doc.rust-lang.org/1.79.0/std/primitive.tuple.html">(C0,)</a></h3></section></summary><div class="impl-items"><section id="method.render" class="method trait-impl"><a class="src rightside" href="../../../src/maplibre/render/render_phase/draw.rs.html#80">source</a><a href="#method.render" class="anchor">§</a><h4 class="code-header">fn <a href="#tymethod.render" class="fn">render</a>&lt;'w&gt;(
world: &amp;'w <a class="struct" href="../../tcs/world/struct.World.html" title="struct maplibre::tcs::world::World">World</a>,
item: <a class="primitive" href="https://doc.rust-lang.org/1.79.0/std/primitive.reference.html">&amp;P</a>,
pass: &amp;mut <a class="struct" href="../resource/tracked_render_pass/struct.TrackedRenderPass.html" title="struct maplibre::render::resource::tracked_render_pass::TrackedRenderPass">TrackedRenderPass</a>&lt;'w&gt;
) -&gt; <a class="enum" href="draw/enum.RenderCommandResult.html" title="enum maplibre::render::render_phase::draw::RenderCommandResult">RenderCommandResult</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-RenderCommand%3CP%3E-for-(C0,+C1)" class="impl"><a class="src rightside" href="../../../src/maplibre/render/render_phase/draw.rs.html#81">source</a><a href="#impl-RenderCommand%3CP%3E-for-(C0,+C1)" class="anchor">§</a><h3 class="code-header">impl&lt;P: <a class="trait" href="draw/trait.PhaseItem.html" title="trait maplibre::render::render_phase::draw::PhaseItem">PhaseItem</a>, C0: <a class="trait" href="draw/trait.RenderCommand.html" title="trait maplibre::render::render_phase::draw::RenderCommand">RenderCommand</a>&lt;P&gt;, C1: <a class="trait" href="draw/trait.RenderCommand.html" title="trait maplibre::render::render_phase::draw::RenderCommand">RenderCommand</a>&lt;P&gt;&gt; <a class="trait" href="draw/trait.RenderCommand.html" title="trait maplibre::render::render_phase::draw::RenderCommand">RenderCommand</a>&lt;P&gt; for <a class="primitive" href="https://doc.rust-lang.org/1.79.0/std/primitive.tuple.html">(C0, C1)</a></h3></section></summary><div class="impl-items"><section id="method.render-1" class="method trait-impl"><a class="src rightside" href="../../../src/maplibre/render/render_phase/draw.rs.html#81">source</a><a href="#method.render-1" class="anchor">§</a><h4 class="code-header">fn <a href="#tymethod.render" class="fn">render</a>&lt;'w&gt;(
world: &amp;'w <a class="struct" href="../../tcs/world/struct.World.html" title="struct maplibre::tcs::world::World">World</a>,
item: <a class="primitive" href="https://doc.rust-lang.org/1.79.0/std/primitive.reference.html">&amp;P</a>,
pass: &amp;mut <a class="struct" href="../resource/tracked_render_pass/struct.TrackedRenderPass.html" title="struct maplibre::render::resource::tracked_render_pass::TrackedRenderPass">TrackedRenderPass</a>&lt;'w&gt;
) -&gt; <a class="enum" href="draw/enum.RenderCommandResult.html" title="enum maplibre::render::render_phase::draw::RenderCommandResult">RenderCommandResult</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-RenderCommand%3CP%3E-for-(C0,+C1,+C2)" class="impl"><a class="src rightside" href="../../../src/maplibre/render/render_phase/draw.rs.html#82">source</a><a href="#impl-RenderCommand%3CP%3E-for-(C0,+C1,+C2)" class="anchor">§</a><h3 class="code-header">impl&lt;P: <a class="trait" href="draw/trait.PhaseItem.html" title="trait maplibre::render::render_phase::draw::PhaseItem">PhaseItem</a>, C0: <a class="trait" href="draw/trait.RenderCommand.html" title="trait maplibre::render::render_phase::draw::RenderCommand">RenderCommand</a>&lt;P&gt;, C1: <a class="trait" href="draw/trait.RenderCommand.html" title="trait maplibre::render::render_phase::draw::RenderCommand">RenderCommand</a>&lt;P&gt;, C2: <a class="trait" href="draw/trait.RenderCommand.html" title="trait maplibre::render::render_phase::draw::RenderCommand">RenderCommand</a>&lt;P&gt;&gt; <a class="trait" href="draw/trait.RenderCommand.html" title="trait maplibre::render::render_phase::draw::RenderCommand">RenderCommand</a>&lt;P&gt; for <a class="primitive" href="https://doc.rust-lang.org/1.79.0/std/primitive.tuple.html">(C0, C1, C2)</a></h3></section></summary><div class="impl-items"><section id="method.render-2" class="method trait-impl"><a class="src rightside" href="../../../src/maplibre/render/render_phase/draw.rs.html#82">source</a><a href="#method.render-2" class="anchor">§</a><h4 class="code-header">fn <a href="#tymethod.render" class="fn">render</a>&lt;'w&gt;(
world: &amp;'w <a class="struct" href="../../tcs/world/struct.World.html" title="struct maplibre::tcs::world::World">World</a>,
item: <a class="primitive" href="https://doc.rust-lang.org/1.79.0/std/primitive.reference.html">&amp;P</a>,
pass: &amp;mut <a class="struct" href="../resource/tracked_render_pass/struct.TrackedRenderPass.html" title="struct maplibre::render::resource::tracked_render_pass::TrackedRenderPass">TrackedRenderPass</a>&lt;'w&gt;
) -&gt; <a class="enum" href="draw/enum.RenderCommandResult.html" title="enum maplibre::render::render_phase::draw::RenderCommandResult">RenderCommandResult</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-RenderCommand%3CP%3E-for-(C0,+C1,+C2,+C3)" class="impl"><a class="src rightside" href="../../../src/maplibre/render/render_phase/draw.rs.html#83">source</a><a href="#impl-RenderCommand%3CP%3E-for-(C0,+C1,+C2,+C3)" class="anchor">§</a><h3 class="code-header">impl&lt;P: <a class="trait" href="draw/trait.PhaseItem.html" title="trait maplibre::render::render_phase::draw::PhaseItem">PhaseItem</a>, C0: <a class="trait" href="draw/trait.RenderCommand.html" title="trait maplibre::render::render_phase::draw::RenderCommand">RenderCommand</a>&lt;P&gt;, C1: <a class="trait" href="draw/trait.RenderCommand.html" title="trait maplibre::render::render_phase::draw::RenderCommand">RenderCommand</a>&lt;P&gt;, C2: <a class="trait" href="draw/trait.RenderCommand.html" title="trait maplibre::render::render_phase::draw::RenderCommand">RenderCommand</a>&lt;P&gt;, C3: <a class="trait" href="draw/trait.RenderCommand.html" title="trait maplibre::render::render_phase::draw::RenderCommand">RenderCommand</a>&lt;P&gt;&gt; <a class="trait" href="draw/trait.RenderCommand.html" title="trait maplibre::render::render_phase::draw::RenderCommand">RenderCommand</a>&lt;P&gt; for <a class="primitive" href="https://doc.rust-lang.org/1.79.0/std/primitive.tuple.html">(C0, C1, C2, C3)</a></h3></section></summary><div class="impl-items"><section id="method.render-3" class="method trait-impl"><a class="src rightside" href="../../../src/maplibre/render/render_phase/draw.rs.html#83">source</a><a href="#method.render-3" class="anchor">§</a><h4 class="code-header">fn <a href="#tymethod.render" class="fn">render</a>&lt;'w&gt;(
world: &amp;'w <a class="struct" href="../../tcs/world/struct.World.html" title="struct maplibre::tcs::world::World">World</a>,
item: <a class="primitive" href="https://doc.rust-lang.org/1.79.0/std/primitive.reference.html">&amp;P</a>,
pass: &amp;mut <a class="struct" href="../resource/tracked_render_pass/struct.TrackedRenderPass.html" title="struct maplibre::render::resource::tracked_render_pass::TrackedRenderPass">TrackedRenderPass</a>&lt;'w&gt;
) -&gt; <a class="enum" href="draw/enum.RenderCommandResult.html" title="enum maplibre::render::render_phase::draw::RenderCommandResult">RenderCommandResult</a></h4></section></div></details><details class="toggle implementors-toggle"><summary><section id="impl-RenderCommand%3CP%3E-for-(C0,+C1,+C2,+C3,+C4)" class="impl"><a class="src rightside" href="../../../src/maplibre/render/render_phase/draw.rs.html#84">source</a><a href="#impl-RenderCommand%3CP%3E-for-(C0,+C1,+C2,+C3,+C4)" class="anchor">§</a><h3 class="code-header">impl&lt;P: <a class="trait" href="draw/trait.PhaseItem.html" title="trait maplibre::render::render_phase::draw::PhaseItem">PhaseItem</a>, C0: <a class="trait" href="draw/trait.RenderCommand.html" title="trait maplibre::render::render_phase::draw::RenderCommand">RenderCommand</a>&lt;P&gt;, C1: <a class="trait" href="draw/trait.RenderCommand.html" title="trait maplibre::render::render_phase::draw::RenderCommand">RenderCommand</a>&lt;P&gt;, C2: <a class="trait" href="draw/trait.RenderCommand.html" title="trait maplibre::render::render_phase::draw::RenderCommand">RenderCommand</a>&lt;P&gt;, C3: <a class="trait" href="draw/trait.RenderCommand.html" title="trait maplibre::render::render_phase::draw::RenderCommand">RenderCommand</a>&lt;P&gt;, C4: <a class="trait" href="draw/trait.RenderCommand.html" title="trait maplibre::render::render_phase::draw::RenderCommand">RenderCommand</a>&lt;P&gt;&gt; <a class="trait" href="draw/trait.RenderCommand.html" title="trait maplibre::render::render_phase::draw::RenderCommand">RenderCommand</a>&lt;P&gt; for <a class="primitive" href="https://doc.rust-lang.org/1.79.0/std/primitive.tuple.html">(C0, C1, C2, C3, C4)</a></h3></section></summary><div class="impl-items"><section id="method.render-4" class="method trait-impl"><a class="src rightside" href="../../../src/maplibre/render/render_phase/draw.rs.html#84">source</a><a href="#method.render-4" class="anchor">§</a><h4 class="code-header">fn <a href="#tymethod.render" class="fn">render</a>&lt;'w&gt;(
world: &amp;'w <a class="struct" href="../../tcs/world/struct.World.html" title="struct maplibre::tcs::world::World">World</a>,
item: <a class="primitive" href="https://doc.rust-lang.org/1.79.0/std/primitive.reference.html">&amp;P</a>,
pass: &amp;mut <a class="struct" href="../resource/tracked_render_pass/struct.TrackedRenderPass.html" title="struct maplibre::render::resource::tracked_render_pass::TrackedRenderPass">TrackedRenderPass</a>&lt;'w&gt;
) -&gt; <a class="enum" href="draw/enum.RenderCommandResult.html" title="enum maplibre::render::render_phase::draw::RenderCommandResult">RenderCommandResult</a></h4></section></div></details><h2 id="implementors" class="section-header">Implementors<a href="#implementors" class="anchor">§</a></h2><div id="implementors-list"><section id="impl-RenderCommand%3CTileDebugItem%3E-for-DrawDebugOutline" class="impl"><a class="src rightside" href="../../../src/maplibre/debug/render_commands.rs.html#31-58">source</a><a href="#impl-RenderCommand%3CTileDebugItem%3E-for-DrawDebugOutline" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="draw/trait.RenderCommand.html" title="trait maplibre::render::render_phase::draw::RenderCommand">RenderCommand</a>&lt;<a class="struct" href="../../debug/struct.TileDebugItem.html" title="struct maplibre::debug::TileDebugItem">TileDebugItem</a>&gt; for <a class="struct" href="../../debug/render_commands/struct.DrawDebugOutline.html" title="struct maplibre::debug::render_commands::DrawDebugOutline">DrawDebugOutline</a></h3></section><section id="impl-RenderCommand%3CLayerItem%3E-for-DrawRasterTile" class="impl"><a class="src rightside" href="../../../src/maplibre/raster/render_commands.rs.html#53-94">source</a><a href="#impl-RenderCommand%3CLayerItem%3E-for-DrawRasterTile" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="draw/trait.RenderCommand.html" title="trait maplibre::render::render_phase::draw::RenderCommand">RenderCommand</a>&lt;<a class="struct" href="struct.LayerItem.html" title="struct maplibre::render::render_phase::LayerItem">LayerItem</a>&gt; for <a class="struct" href="../../raster/render_commands/struct.DrawRasterTile.html" title="struct maplibre::raster::render_commands::DrawRasterTile">DrawRasterTile</a></h3></section><section id="impl-RenderCommand%3CLayerItem%3E-for-DrawVectorTile" class="impl"><a class="src rightside" href="../../../src/maplibre/vector/render_commands.rs.html#33-107">source</a><a href="#impl-RenderCommand%3CLayerItem%3E-for-DrawVectorTile" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="draw/trait.RenderCommand.html" title="trait maplibre::render::render_phase::draw::RenderCommand">RenderCommand</a>&lt;<a class="struct" href="struct.LayerItem.html" title="struct maplibre::render::render_phase::LayerItem">LayerItem</a>&gt; for <a class="struct" href="../../vector/render_commands/struct.DrawVectorTile.html" title="struct maplibre::vector::render_commands::DrawVectorTile">DrawVectorTile</a></h3></section><section id="impl-RenderCommand%3CTileMaskItem%3E-for-DrawMask" class="impl"><a class="src rightside" href="../../../src/maplibre/render/render_commands.rs.html#30-62">source</a><a href="#impl-RenderCommand%3CTileMaskItem%3E-for-DrawMask" class="anchor">§</a><h3 class="code-header">impl <a class="trait" href="draw/trait.RenderCommand.html" title="trait maplibre::render::render_phase::draw::RenderCommand">RenderCommand</a>&lt;<a class="struct" href="struct.TileMaskItem.html" title="struct maplibre::render::render_phase::TileMaskItem">TileMaskItem</a>&gt; for <a class="struct" href="../render_commands/struct.DrawMask.html" title="struct maplibre::render::render_commands::DrawMask">DrawMask</a></h3></section><section id="impl-RenderCommand%3CP%3E-for-SetDebugPipeline" class="impl"><a class="src rightside" href="../../../src/maplibre/debug/render_commands.rs.html#15-28">source</a><a href="#impl-RenderCommand%3CP%3E-for-SetDebugPipeline" class="anchor">§</a><h3 class="code-header">impl&lt;P: <a class="trait" href="draw/trait.PhaseItem.html" title="trait maplibre::render::render_phase::draw::PhaseItem">PhaseItem</a>&gt; <a class="trait" href="draw/trait.RenderCommand.html" title="trait maplibre::render::render_phase::draw::RenderCommand">RenderCommand</a>&lt;P&gt; for <a class="struct" href="../../debug/render_commands/struct.SetDebugPipeline.html" title="struct maplibre::debug::render_commands::SetDebugPipeline">SetDebugPipeline</a></h3></section><section id="impl-RenderCommand%3CP%3E-for-SetRasterTilePipeline" class="impl"><a class="src rightside" href="../../../src/maplibre/raster/render_commands.rs.html#13-28">source</a><a href="#impl-RenderCommand%3CP%3E-for-SetRasterTilePipeline" class="anchor">§</a><h3 class="code-header">impl&lt;P: <a class="trait" href="draw/trait.PhaseItem.html" title="trait maplibre::render::render_phase::draw::PhaseItem">PhaseItem</a>&gt; <a class="trait" href="draw/trait.RenderCommand.html" title="trait maplibre::render::render_phase::draw::RenderCommand">RenderCommand</a>&lt;P&gt; for <a class="struct" href="../../raster/render_commands/struct.SetRasterTilePipeline.html" title="struct maplibre::raster::render_commands::SetRasterTilePipeline">SetRasterTilePipeline</a></h3></section><section id="impl-RenderCommand%3CP%3E-for-SetVectorTilePipeline" class="impl"><a class="src rightside" href="../../../src/maplibre/vector/render_commands.rs.html#16-30">source</a><a href="#impl-RenderCommand%3CP%3E-for-SetVectorTilePipeline" class="anchor">§</a><h3 class="code-header">impl&lt;P: <a class="trait" href="draw/trait.PhaseItem.html" title="trait maplibre::render::render_phase::draw::PhaseItem">PhaseItem</a>&gt; <a class="trait" href="draw/trait.RenderCommand.html" title="trait maplibre::render::render_phase::draw::RenderCommand">RenderCommand</a>&lt;P&gt; for <a class="struct" href="../../vector/render_commands/struct.SetVectorTilePipeline.html" title="struct maplibre::vector::render_commands::SetVectorTilePipeline">SetVectorTilePipeline</a></h3></section><section id="impl-RenderCommand%3CP%3E-for-SetMaskPipeline" class="impl"><a class="src rightside" href="../../../src/maplibre/render/render_commands.rs.html#15-27">source</a><a href="#impl-RenderCommand%3CP%3E-for-SetMaskPipeline" class="anchor">§</a><h3 class="code-header">impl&lt;P: <a class="trait" href="draw/trait.PhaseItem.html" title="trait maplibre::render::render_phase::draw::PhaseItem">PhaseItem</a>&gt; <a class="trait" href="draw/trait.RenderCommand.html" title="trait maplibre::render::render_phase::draw::RenderCommand">RenderCommand</a>&lt;P&gt; for <a class="struct" href="../render_commands/struct.SetMaskPipeline.html" title="struct maplibre::render::render_commands::SetMaskPipeline">SetMaskPipeline</a></h3></section><section id="impl-RenderCommand%3CLayerItem%3E-for-SetRasterViewBindGroup%3CI%3E" class="impl"><a class="src rightside" href="../../../src/maplibre/raster/render_commands.rs.html#31-50">source</a><a href="#impl-RenderCommand%3CLayerItem%3E-for-SetRasterViewBindGroup%3CI%3E" class="anchor">§</a><h3 class="code-header">impl&lt;const I: <a class="primitive" href="https://doc.rust-lang.org/1.79.0/std/primitive.usize.html">usize</a>&gt; <a class="trait" href="draw/trait.RenderCommand.html" title="trait maplibre::render::render_phase::draw::RenderCommand">RenderCommand</a>&lt;<a class="struct" href="struct.LayerItem.html" title="struct maplibre::render::render_phase::LayerItem">LayerItem</a>&gt; for <a class="struct" href="../../raster/render_commands/struct.SetRasterViewBindGroup.html" title="struct maplibre::raster::render_commands::SetRasterViewBindGroup">SetRasterViewBindGroup</a>&lt;I&gt;</h3></section></div><script src="../../../trait.impl/maplibre/render/render_phase/draw/trait.RenderCommand.js" data-ignore-extern-crates="std" async></script></section></div></main></body></html>