|
|
<!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="API documentation for the Rust `PersistentDescriptorSet` struct in crate `vulkano`."><meta name="keywords" content="rust, rustlang, rust-lang, PersistentDescriptorSet"><title>vulkano::descriptor::descriptor_set::PersistentDescriptorSet - Rust</title><link rel="stylesheet" type="text/css" href="../../../normalize.css"><link rel="stylesheet" type="text/css" href="../../../rustdoc.css" id="mainThemeStyle"><link rel="stylesheet" type="text/css" href="../../../dark.css"><link rel="stylesheet" type="text/css" href="../../../light.css" id="themeStyle"><script src="../../../storage.js"></script><noscript><link rel="stylesheet" href="../../../noscript.css"></noscript><link rel="shortcut icon" href="../../../favicon.ico"><style type="text/css">#crate-search{background-image:url("../../../down-arrow.svg");}</style></head><body class="rustdoc struct"><!--[if lte IE 8]><div class="warning">This old browser is unsupported and will most likely display funky things.</div><![endif]--><nav class="sidebar"><div class="sidebar-menu">☰</div><a href='../../../vulkano/index.html'><div class='logo-container'><img src='https://raw.githubusercontent.com/vulkano-rs/vulkano/master/logo.png' alt='logo'></div></a><p class='location'>Struct PersistentDescriptorSet</p><div class="sidebar-elems"><div class="block items"><a class="sidebar-title" href="#methods">Methods</a><div class="sidebar-links"><a href="#method.start">start</a></div><a class="sidebar-title" href="#implementations">Trait Implementations</a><div class="sidebar-links"><a href="#impl-DescriptorSet">DescriptorSet</a><a href="#impl-DescriptorSetDesc">DescriptorSetDesc</a><a href="#impl-DeviceOwned">DeviceOwned</a></div><a class="sidebar-title" href="#synthetic-implementations">Auto Trait Implementations</a><div class="sidebar-links"><a href="#impl-RefUnwindSafe">RefUnwindSafe</a><a href="#impl-Send">Send</a><a href="#impl-Sync">Sync</a><a href="#impl-Unpin">Unpin</a><a href="#impl-UnwindSafe">UnwindSafe</a></div><a class="sidebar-title" href="#blanket-implementations">Blanket Implementations</a><div class="sidebar-links"><a href="#impl-Any">Any</a><a href="#impl-Borrow%3CT%3E">Borrow<T></a><a href="#impl-BorrowMut%3CT%3E">BorrowMut<T></a><a href="#impl-Content">Content</a><a href="#impl-DescriptorSet">DescriptorSet</a><a href="#impl-DescriptorSetDesc">DescriptorSetDesc</a><a href="#impl-DescriptorSetsCollection">DescriptorSetsCollection</a><a href="#impl-DeviceOwned">DeviceOwned</a><a href="#impl-From%3CT%3E">From<T></a><a href="#impl-Into%3CU%3E">Into<U></a><a href="#impl-TryFrom%3CU%3E">TryFrom<U></a><a href="#impl-TryInto%3CU%3E">TryInto<U></a></div></div><p class='location'><a href='../../index.html'>vulkano</a>::<wbr><a href='../index.html'>descriptor</a>::<wbr><a href='index.html'>descriptor_set</a></p><script>window.sidebarCurrent = {name: 'PersistentDescriptorSet', ty: 'struct', relpath: ''};</script><script defer src="sidebar-items.js"></script></div></nav><div class="theme-picker"><button id="theme-picker" aria-label="Pick another theme!"><img src="../../../brush.svg" width="18" alt="Pick another theme!"></button><div id="theme-choices"></div></div><script src="../../../theme.js"></script><nav class="sub"><form class="search-form js-only"><div class="search-container"><div><select id="crate-search"><option value="All crates">All crates</option></select><input class="search-input" name="search" autocomplete="off" spellcheck="false" placeholder="Click or press ‘S’ to search, ‘?’ for more options…" type="search"></div><a id="settings-menu" href="../../../settings.html"><img src="../../../wheel.svg" width="18" alt="Change settings"></a></div></form></nav><section id="main" class="content"><h1 class='fqn'><span class='out-of-band'><span id='render-detail'><a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs">[<span class='inner'>−</span>]</a></span><a class='srclink' href='../../../src/vulkano/descriptor/descriptor_set/persistent.rs.html#57-63' title='goto source code'>[src]</a></span><span class='in-band'>Struct <a href='../../index.html'>vulkano</a>::<wbr><a href='../index.html'>descriptor</a>::<wbr><a href='index.html'>descriptor_set</a>::<wbr><a class="struct" href=''>PersistentDescriptorSet</a></span></h1><div class="docblock type-decl hidden-by-usual-hider"><pre class='rust struct'>pub struct PersistentDescriptorSet<L, R, P = <a class="struct" href="../../../vulkano/descriptor/descriptor_set/struct.StdDescriptorPoolAlloc.html" title="struct vulkano::descriptor::descriptor_set::StdDescriptorPoolAlloc">StdDescriptorPoolAlloc</a>> { /* fields omitted */ }</pre></div><div class='docblock'><p>An immutable descriptor set that is expected to be long-lived.</p>
|
|
|
<p>Creating a persistent descriptor set allocates from a pool, and can't be modified once created.
|
|
|
You are therefore encouraged to create them at initialization and not the during
|
|
|
performance-critical paths.</p>
|
|
|
<blockquote>
|
|
|
<p><strong>Note</strong>: You can control of the pool that is used to create the descriptor set, if you wish
|
|
|
so. By creating a implementation of the <code>DescriptorPool</code> trait that doesn't perform any
|
|
|
actual allocation, you can skip this allocation and make it acceptable to use a persistent
|
|
|
descriptor set in performance-critical paths..</p>
|
|
|
</blockquote>
|
|
|
<p>The template parameter of the <code>PersistentDescriptorSet</code> is complex, and you shouldn't try to
|
|
|
express it explicitly. If you want to store your descriptor set in a struct or in a <code>Vec</code> for
|
|
|
example, you are encouraged to turn the <code>PersistentDescriptorSet</code> into a <code>Box<DescriptorSet></code>
|
|
|
or a <code>Arc<DescriptorSet></code>.</p>
|
|
|
<h1 id="example" class="section-header"><a href="#example">Example</a></h1></div><h2 id='methods' class='small-section-header'>Methods<a href='#methods' class='anchor'></a></h2><h3 id='impl' class='impl'><code class='in-band'>impl<L> <a class="struct" href="../../../vulkano/descriptor/descriptor_set/struct.PersistentDescriptorSet.html" title="struct vulkano::descriptor::descriptor_set::PersistentDescriptorSet">PersistentDescriptorSet</a><L, <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.unit.html">()</a>></code><a href='#impl' class='anchor'></a><a class='srclink' href='../../../src/vulkano/descriptor/descriptor_set/persistent.rs.html#65-87' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.start' class="method"><code id='start.v'>pub fn <a href='#method.start' class='fnname'>start</a>(layout: L, set_id: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -> <a class="struct" href="../../../vulkano/descriptor/descriptor_set/struct.PersistentDescriptorSetBuilder.html" title="struct vulkano::descriptor::descriptor_set::PersistentDescriptorSetBuilder">PersistentDescriptorSetBuilder</a><L, <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.unit.html">()</a>> <span class="where fmt-newline">where<br> L: <a class="trait" href="../../../vulkano/descriptor/pipeline_layout/trait.PipelineLayoutAbstract.html" title="trait vulkano::descriptor::pipeline_layout::PipelineLayoutAbstract">PipelineLayoutAbstract</a>, </span></code><a class='srclink' href='../../../src/vulkano/descriptor/descriptor_set/persistent.rs.html#72-86' title='goto source code'>[src]</a></h4><div class='docblock'><p>Starts the process of building a <code>PersistentDescriptorSet</code>. Returns a builder.</p>
|
|
|
<h1 id="panic" class="section-header"><a href="#panic">Panic</a></h1>
|
|
|
<ul>
|
|
|
<li>Panics if the set id is out of range.</li>
|
|
|
</ul>
|
|
|
</div></div><h2 id='implementations' class='small-section-header'>Trait Implementations<a href='#implementations' class='anchor'></a></h2><div id='implementations-list'><h3 id='impl-DescriptorSet' class='impl'><code class='in-band'>impl<L, R, P> <a class="trait" href="../../../vulkano/descriptor/descriptor_set/trait.DescriptorSet.html" title="trait vulkano::descriptor::descriptor_set::DescriptorSet">DescriptorSet</a> for <a class="struct" href="../../../vulkano/descriptor/descriptor_set/struct.PersistentDescriptorSet.html" title="struct vulkano::descriptor::descriptor_set::PersistentDescriptorSet">PersistentDescriptorSet</a><L, R, P> <span class="where fmt-newline">where<br> L: <a class="trait" href="../../../vulkano/descriptor/pipeline_layout/trait.PipelineLayoutAbstract.html" title="trait vulkano::descriptor::pipeline_layout::PipelineLayoutAbstract">PipelineLayoutAbstract</a>,<br> P: <a class="trait" href="../../../vulkano/descriptor/descriptor_set/trait.DescriptorPoolAlloc.html" title="trait vulkano::descriptor::descriptor_set::DescriptorPoolAlloc">DescriptorPoolAlloc</a>,<br> R: PersistentDescriptorSetResources, </span></code><a href='#impl-DescriptorSet' class='anchor'></a><a class='srclink' href='../../../src/vulkano/descriptor/descriptor_set/persistent.rs.html#89-118' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.inner' class="method hidden"><code id='inner.v'>fn <a href='../../../vulkano/descriptor/descriptor_set/trait.DescriptorSet.html#tymethod.inner' class='fnname'>inner</a>(&self) -> &<a class="struct" href="../../../vulkano/descriptor/descriptor_set/struct.UnsafeDescriptorSet.html" title="struct vulkano::descriptor::descriptor_set::UnsafeDescriptorSet">UnsafeDescriptorSet</a></code><a class='srclink' href='../../../src/vulkano/descriptor/descriptor_set/persistent.rs.html#95-97' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns the inner <code>UnsafeDescriptorSet</code>.</p>
|
|
|
</div><h4 id='method.num_buffers' class="method hidden"><code id='num_buffers.v'>fn <a href='../../../vulkano/descriptor/descriptor_set/trait.DescriptorSet.html#tymethod.num_buffers' class='fnname'>num_buffers</a>(&self) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a></code><a class='srclink' href='../../../src/vulkano/descriptor/descriptor_set/persistent.rs.html#100-102' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns the number of buffers within this descriptor set.</p>
|
|
|
</div><h4 id='method.buffer' class="method hidden"><code id='buffer.v'>fn <a href='../../../vulkano/descriptor/descriptor_set/trait.DescriptorSet.html#tymethod.buffer' class='fnname'>buffer</a>(&self, index: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -> <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a><<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>&dyn <a class="trait" href="../../../vulkano/buffer/trait.BufferAccess.html" title="trait vulkano::buffer::BufferAccess">BufferAccess</a>, <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a>></code><a class='srclink' href='../../../src/vulkano/descriptor/descriptor_set/persistent.rs.html#105-107' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns the <code>index</code>th buffer of this descriptor set, or <code>None</code> if out of range. Also returns the index of the descriptor that uses this buffer. <a href="../../../vulkano/descriptor/descriptor_set/trait.DescriptorSet.html#tymethod.buffer">Read more</a></p>
|
|
|
</div><h4 id='method.num_images' class="method hidden"><code id='num_images.v'>fn <a href='../../../vulkano/descriptor/descriptor_set/trait.DescriptorSet.html#tymethod.num_images' class='fnname'>num_images</a>(&self) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a></code><a class='srclink' href='../../../src/vulkano/descriptor/descriptor_set/persistent.rs.html#110-112' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns the number of images within this descriptor set.</p>
|
|
|
</div><h4 id='method.image' class="method hidden"><code id='image.v'>fn <a href='../../../vulkano/descriptor/descriptor_set/trait.DescriptorSet.html#tymethod.image' class='fnname'>image</a>(&self, index: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -> <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a><<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>&dyn <a class="trait" href="../../../vulkano/image/traits/trait.ImageViewAccess.html" title="trait vulkano::image::traits::ImageViewAccess">ImageViewAccess</a>, <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a>></code><a class='srclink' href='../../../src/vulkano/descriptor/descriptor_set/persistent.rs.html#115-117' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns the <code>index</code>th image of this descriptor set, or <code>None</code> if out of range. Also returns the index of the descriptor that uses this image. <a href="../../../vulkano/descriptor/descriptor_set/trait.DescriptorSet.html#tymethod.image">Read more</a></p>
|
|
|
</div></div><h3 id='impl-DescriptorSetDesc' class='impl'><code class='in-band'>impl<L, R, P> <a class="trait" href="../../../vulkano/descriptor/descriptor_set/trait.DescriptorSetDesc.html" title="trait vulkano::descriptor::descriptor_set::DescriptorSetDesc">DescriptorSetDesc</a> for <a class="struct" href="../../../vulkano/descriptor/descriptor_set/struct.PersistentDescriptorSet.html" title="struct vulkano::descriptor::descriptor_set::PersistentDescriptorSet">PersistentDescriptorSet</a><L, R, P> <span class="where fmt-newline">where<br> L: <a class="trait" href="../../../vulkano/descriptor/pipeline_layout/trait.PipelineLayoutAbstract.html" title="trait vulkano::descriptor::pipeline_layout::PipelineLayoutAbstract">PipelineLayoutAbstract</a>, </span></code><a href='#impl-DescriptorSetDesc' class='anchor'></a><a class='srclink' href='../../../src/vulkano/descriptor/descriptor_set/persistent.rs.html#120-134' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.num_bindings' class="method hidden"><code id='num_bindings.v'>fn <a href='../../../vulkano/descriptor/descriptor_set/trait.DescriptorSetDesc.html#tymethod.num_bindings' class='fnname'>num_bindings</a>(&self) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a></code><a class='srclink' href='../../../src/vulkano/descriptor/descriptor_set/persistent.rs.html#124-128' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns the number of binding slots in the set.</p>
|
|
|
</div><h4 id='method.descriptor' class="method hidden"><code id='descriptor.v'>fn <a href='../../../vulkano/descriptor/descriptor_set/trait.DescriptorSetDesc.html#tymethod.descriptor' class='fnname'>descriptor</a>(&self, binding: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -> <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a><<a class="struct" href="../../../vulkano/descriptor/descriptor/struct.DescriptorDesc.html" title="struct vulkano::descriptor::descriptor::DescriptorDesc">DescriptorDesc</a>></code><a class='srclink' href='../../../src/vulkano/descriptor/descriptor_set/persistent.rs.html#131-133' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns a description of a descriptor, or <code>None</code> if out of range.</p>
|
|
|
</div></div><h3 id='impl-DeviceOwned' class='impl'><code class='in-band'>impl<L, R, P> <a class="trait" href="../../../vulkano/device/trait.DeviceOwned.html" title="trait vulkano::device::DeviceOwned">DeviceOwned</a> for <a class="struct" href="../../../vulkano/descriptor/descriptor_set/struct.PersistentDescriptorSet.html" title="struct vulkano::descriptor::descriptor_set::PersistentDescriptorSet">PersistentDescriptorSet</a><L, R, P> <span class="where fmt-newline">where<br> L: <a class="trait" href="../../../vulkano/device/trait.DeviceOwned.html" title="trait vulkano::device::DeviceOwned">DeviceOwned</a>, </span></code><a href='#impl-DeviceOwned' class='anchor'></a><a class='srclink' href='../../../src/vulkano/descriptor/descriptor_set/persistent.rs.html#136-143' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.device' class="method hidden"><code id='device.v'>fn <a href='../../../vulkano/device/trait.DeviceOwned.html#tymethod.device' class='fnname'>device</a>(&self) -> &<a class="struct" href="https://doc.rust-lang.org/nightly/alloc/sync/struct.Arc.html" title="struct alloc::sync::Arc">Arc</a><<a class="struct" href="../../../vulkano/device/struct.Device.html" title="struct vulkano::device::Device">Device</a>></code><a class='srclink' href='../../../src/vulkano/descriptor/descriptor_set/persistent.rs.html#140-142' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns the device that owns <code>Self</code>.</p>
|
|
|
</div></div></div><h2 id='synthetic-implementations' class='small-section-header'>Auto Trait Implementations<a href='#synthetic-implementations' class='anchor'></a></h2><div id='synthetic-implementations-list'><h3 id='impl-Send' class='impl'><code class='in-band'>impl<L, R, P> <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Send.html" title="trait core::marker::Send">Send</a> for <a class="struct" href="../../../vulkano/descriptor/descriptor_set/struct.PersistentDescriptorSet.html" title="struct vulkano::descriptor::descriptor_set::PersistentDescriptorSet">PersistentDescriptorSet</a><L, R, P> <span class="where fmt-newline">where<br> L: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Send.html" title="trait core::marker::Send">Send</a>,<br> P: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Send.html" title="trait core::marker::Send">Send</a>,<br> R: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Send.html" title="trait core::marker::Send">Send</a>, </span></code><a href='#impl-Send' class='anchor'></a></h3><div class='impl-items'></div><h3 id='impl-Unpin' class='impl'><code class='in-band'>impl<L, R, P> <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Unpin.html" title="trait core::marker::Unpin">Unpin</a> for <a class="struct" href="../../../vulkano/descriptor/descriptor_set/struct.PersistentDescriptorSet.html" title="struct vulkano::descriptor::descriptor_set::PersistentDescriptorSet">PersistentDescriptorSet</a><L, R, P> <span class="where fmt-newline">where<br> L: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Unpin.html" title="trait core::marker::Unpin">Unpin</a>,<br> P: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Unpin.html" title="trait core::marker::Unpin">Unpin</a>,<br> R: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Unpin.html" title="trait core::marker::Unpin">Unpin</a>, </span></code><a href='#impl-Unpin' class='anchor'></a></h3><div class='impl-items'></div><h3 id='impl-Sync' class='impl'><code class='in-band'>impl<L, R, P> <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sync.html" title="trait core::marker::Sync">Sync</a> for <a class="struct" href="../../../vulkano/descriptor/descriptor_set/struct.PersistentDescriptorSet.html" title="struct vulkano::descriptor::descriptor_set::PersistentDescriptorSet">PersistentDescriptorSet</a><L, R, P> <span class="where fmt-newline">where<br> L: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sync.html" title="trait core::marker::Sync">Sync</a>,<br> P: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sync.html" title="trait core::marker::Sync">Sync</a>,<br> R: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sync.html" title="trait core::marker::Sync">Sync</a>, </span></code><a href='#impl-Sync' class='anchor'></a></h3><div class='impl-items'></div><h3 id='impl-UnwindSafe' class='impl'><code class='in-band'>impl<L, R, P> <a class="trait" href="https://doc.rust-lang.org/nightly/std/panic/trait.UnwindSafe.html" title="trait std::panic::UnwindSafe">UnwindSafe</a> for <a class="struct" href="../../../vulkano/descriptor/descriptor_set/struct.PersistentDescriptorSet.html" title="struct vulkano::descriptor::descriptor_set::PersistentDescriptorSet">PersistentDescriptorSet</a><L, R, P> <span class="where fmt-newline">where<br> L: <a class="trait" href="https://doc.rust-lang.org/nightly/std/panic/trait.UnwindSafe.html" title="trait std::panic::UnwindSafe">UnwindSafe</a>,<br> P: <a class="trait" href="https://doc.rust-lang.org/nightly/std/panic/trait.UnwindSafe.html" title="trait std::panic::UnwindSafe">UnwindSafe</a>,<br> R: <a class="trait" href="https://doc.rust-lang.org/nightly/std/panic/trait.UnwindSafe.html" title="trait std::panic::UnwindSafe">UnwindSafe</a>, </span></code><a href='#impl-UnwindSafe' class='anchor'></a></h3><div class='impl-items'></div><h3 id='impl-RefUnwindSafe' class='impl'><code class='in-band'>impl<L, R, P> <a class="trait" href="https://doc.rust-lang.org/nightly/std/panic/trait.RefUnwindSafe.html" title="trait std::panic::RefUnwindSafe">RefUnwindSafe</a> for <a class="struct" href="../../../vulkano/descriptor/descriptor_set/struct.PersistentDescriptorSet.html" title="struct vulkano::descriptor::descriptor_set::PersistentDescriptorSet">PersistentDescriptorSet</a><L, R, P> <span class="where fmt-newline">where<br> L: <a class="trait" href="https://doc.rust-lang.org/nightly/std/panic/trait.RefUnwindSafe.html" title="trait std::panic::RefUnwindSafe">RefUnwindSafe</a>,<br> P: <a class="trait" href="https://doc.rust-lang.org/nightly/std/panic/trait.RefUnwindSafe.html" title="trait std::panic::RefUnwindSafe">RefUnwindSafe</a>,<br> R: <a class="trait" href="https://doc.rust-lang.org/nightly/std/panic/trait.RefUnwindSafe.html" title="trait std::panic::RefUnwindSafe">RefUnwindSafe</a>, </span></code><a href='#impl-RefUnwindSafe' class='anchor'></a></h3><div class='impl-items'></div></div><h2 id='blanket-implementations' class='small-section-header'>Blanket Implementations<a href='#blanket-implementations' class='anchor'></a></h2><div id='blanket-implementations-list'><h3 id='impl-DescriptorSetsCollection' class='impl'><code class='in-band'>impl<T> <a class="trait" href="../../../vulkano/descriptor/descriptor_set/collection/trait.DescriptorSetsCollection.html" title="trait vulkano::descriptor::descriptor_set::collection::DescriptorSetsCollection">DescriptorSetsCollection</a> for T <span class="where fmt-newline">where<br> T: <a class="trait" href="../../../vulkano/descriptor/descriptor_set/trait.DescriptorSet.html" title="trait vulkano::descriptor::descriptor_set::DescriptorSet">DescriptorSet</a> + <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Send.html" title="trait core::marker::Send">Send</a> + <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sync.html" title="trait core::marker::Sync">Sync</a> + 'static, </span></code><a href='#impl-DescriptorSetsCollection' class='anchor'></a><a class='srclink' href='../../../src/vulkano/descriptor/descriptor_set/collection.rs.html#48-71' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.into_vec' class="method hidden"><code id='into_vec.v'>fn <a href='../../../vulkano/descriptor/descriptor_set/collection/trait.DescriptorSetsCollection.html#tymethod.into_vec' class='fnname'>into_vec</a>(Self) -> <a class="struct" href="https://doc.rust-lang.org/nightly/alloc/vec/struct.Vec.html" title="struct alloc::vec::Vec">Vec</a><<a class="struct" href="https://doc.rust-lang.org/nightly/alloc/boxed/struct.Box.html" title="struct alloc::boxed::Box">Box</a><dyn <a class="trait" href="../../../vulkano/descriptor/descriptor_set/trait.DescriptorSet.html" title="trait vulkano::descriptor::descriptor_set::DescriptorSet">DescriptorSet</a> + 'static + <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sync.html" title="trait core::marker::Sync">Sync</a> + <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Send.html" title="trait core::marker::Send">Send</a>>></code><a class='srclink' href='../../../src/vulkano/descriptor/descriptor_set/collection.rs.html#52-54' title='goto source code'>[src]</a></h4><h4 id='method.num_bindings_in_set' class="method hidden"><code id='num_bindings_in_set.v'>fn <a href='../../../vulkano/descriptor/descriptor_set/collection/trait.DescriptorSetsCollection.html#tymethod.num_bindings_in_set' class='fnname'>num_bindings_in_set</a>(<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&</a>Self, <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -> <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a><<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>></code><a class='srclink' href='../../../src/vulkano/descriptor/descriptor_set/collection.rs.html#57-62' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns the number of descriptors in the set. Includes possibly empty descriptors. <a href="../../../vulkano/descriptor/descriptor_set/collection/trait.DescriptorSetsCollection.html#tymethod.num_bindings_in_set">Read more</a></p>
|
|
|
</div><h4 id='method.descriptor-1' class="method hidden"><code id='descriptor.v-1'>fn <a href='../../../vulkano/descriptor/descriptor_set/collection/trait.DescriptorSetsCollection.html#tymethod.descriptor' class='fnname'>descriptor</a>(<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&</a>Self, <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>, <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -> <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a><<a class="struct" href="../../../vulkano/descriptor/descriptor/struct.DescriptorDesc.html" title="struct vulkano::descriptor::descriptor::DescriptorDesc">DescriptorDesc</a>></code><a class='srclink' href='../../../src/vulkano/descriptor/descriptor_set/collection.rs.html#65-70' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns the descriptor for the given binding of the given set. <a href="../../../vulkano/descriptor/descriptor_set/collection/trait.DescriptorSetsCollection.html#tymethod.descriptor">Read more</a></p>
|
|
|
</div></div><h3 id='impl-DescriptorSet-1' class='impl'><code class='in-band'>impl<T> <a class="trait" href="../../../vulkano/descriptor/descriptor_set/trait.DescriptorSet.html" title="trait vulkano::descriptor::descriptor_set::DescriptorSet">DescriptorSet</a> for T <span class="where fmt-newline">where<br> T: <a class="trait" href="../../../vulkano/trait.SafeDeref.html" title="trait vulkano::SafeDeref">SafeDeref</a>,<br> <T as <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/deref/trait.Deref.html" title="trait core::ops::deref::Deref">Deref</a>>::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/deref/trait.Deref.html#associatedtype.Target" title="type core::ops::deref::Deref::Target">Target</a>: <a class="trait" href="../../../vulkano/descriptor/descriptor_set/trait.DescriptorSet.html" title="trait vulkano::descriptor::descriptor_set::DescriptorSet">DescriptorSet</a>, </span></code><a href='#impl-DescriptorSet-1' class='anchor'></a><a class='srclink' href='../../../src/vulkano/descriptor/descriptor_set/mod.rs.html#103-131' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.inner-1' class="method hidden"><code id='inner.v-1'>fn <a href='../../../vulkano/descriptor/descriptor_set/trait.DescriptorSet.html#tymethod.inner' class='fnname'>inner</a>(<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&</a>Self) -> &<a class="struct" href="../../../vulkano/descriptor/descriptor_set/struct.UnsafeDescriptorSet.html" title="struct vulkano::descriptor::descriptor_set::UnsafeDescriptorSet">UnsafeDescriptorSet</a></code><a class='srclink' href='../../../src/vulkano/descriptor/descriptor_set/mod.rs.html#108-110' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns the inner <code>UnsafeDescriptorSet</code>.</p>
|
|
|
</div><h4 id='method.num_buffers-1' class="method hidden"><code id='num_buffers.v-1'>fn <a href='../../../vulkano/descriptor/descriptor_set/trait.DescriptorSet.html#tymethod.num_buffers' class='fnname'>num_buffers</a>(<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&</a>Self) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a></code><a class='srclink' href='../../../src/vulkano/descriptor/descriptor_set/mod.rs.html#113-115' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns the number of buffers within this descriptor set.</p>
|
|
|
</div><h4 id='method.buffer-1' class="method hidden"><code id='buffer.v-1'>fn <a href='../../../vulkano/descriptor/descriptor_set/trait.DescriptorSet.html#tymethod.buffer' class='fnname'>buffer</a>(<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&</a>Self, <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -> <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a><<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>&dyn <a class="trait" href="../../../vulkano/buffer/trait.BufferAccess.html" title="trait vulkano::buffer::BufferAccess">BufferAccess</a>, <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a>></code><a class='srclink' href='../../../src/vulkano/descriptor/descriptor_set/mod.rs.html#118-120' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns the <code>index</code>th buffer of this descriptor set, or <code>None</code> if out of range. Also returns the index of the descriptor that uses this buffer. <a href="../../../vulkano/descriptor/descriptor_set/trait.DescriptorSet.html#tymethod.buffer">Read more</a></p>
|
|
|
</div><h4 id='method.num_images-1' class="method hidden"><code id='num_images.v-1'>fn <a href='../../../vulkano/descriptor/descriptor_set/trait.DescriptorSet.html#tymethod.num_images' class='fnname'>num_images</a>(<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&</a>Self) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a></code><a class='srclink' href='../../../src/vulkano/descriptor/descriptor_set/mod.rs.html#123-125' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns the number of images within this descriptor set.</p>
|
|
|
</div><h4 id='method.image-1' class="method hidden"><code id='image.v-1'>fn <a href='../../../vulkano/descriptor/descriptor_set/trait.DescriptorSet.html#tymethod.image' class='fnname'>image</a>(<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&</a>Self, <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -> <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a><<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>&dyn <a class="trait" href="../../../vulkano/image/traits/trait.ImageViewAccess.html" title="trait vulkano::image::traits::ImageViewAccess">ImageViewAccess</a>, <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a>></code><a class='srclink' href='../../../src/vulkano/descriptor/descriptor_set/mod.rs.html#128-130' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns the <code>index</code>th image of this descriptor set, or <code>None</code> if out of range. Also returns the index of the descriptor that uses this image. <a href="../../../vulkano/descriptor/descriptor_set/trait.DescriptorSet.html#tymethod.image">Read more</a></p>
|
|
|
</div></div><h3 id='impl-DescriptorSetDesc-1' class='impl'><code class='in-band'>impl<T> <a class="trait" href="../../../vulkano/descriptor/descriptor_set/trait.DescriptorSetDesc.html" title="trait vulkano::descriptor::descriptor_set::DescriptorSetDesc">DescriptorSetDesc</a> for T <span class="where fmt-newline">where<br> T: <a class="trait" href="../../../vulkano/trait.SafeDeref.html" title="trait vulkano::SafeDeref">SafeDeref</a>,<br> <T as <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/deref/trait.Deref.html" title="trait core::ops::deref::Deref">Deref</a>>::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/deref/trait.Deref.html#associatedtype.Target" title="type core::ops::deref::Deref::Target">Target</a>: <a class="trait" href="../../../vulkano/descriptor/descriptor_set/trait.DescriptorSetDesc.html" title="trait vulkano::descriptor::descriptor_set::DescriptorSetDesc">DescriptorSetDesc</a>, </span></code><a href='#impl-DescriptorSetDesc-1' class='anchor'></a><a class='srclink' href='../../../src/vulkano/descriptor/descriptor_set/mod.rs.html#142-155' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.num_bindings-1' class="method hidden"><code id='num_bindings.v-1'>fn <a href='../../../vulkano/descriptor/descriptor_set/trait.DescriptorSetDesc.html#tymethod.num_bindings' class='fnname'>num_bindings</a>(<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&</a>Self) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a></code><a class='srclink' href='../../../src/vulkano/descriptor/descriptor_set/mod.rs.html#147-149' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns the number of binding slots in the set.</p>
|
|
|
</div><h4 id='method.descriptor-2' class="method hidden"><code id='descriptor.v-2'>fn <a href='../../../vulkano/descriptor/descriptor_set/trait.DescriptorSetDesc.html#tymethod.descriptor' class='fnname'>descriptor</a>(<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&</a>Self, <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -> <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a><<a class="struct" href="../../../vulkano/descriptor/descriptor/struct.DescriptorDesc.html" title="struct vulkano::descriptor::descriptor::DescriptorDesc">DescriptorDesc</a>></code><a class='srclink' href='../../../src/vulkano/descriptor/descriptor_set/mod.rs.html#152-154' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns a description of a descriptor, or <code>None</code> if out of range.</p>
|
|
|
</div></div><h3 id='impl-DeviceOwned-1' class='impl'><code class='in-band'>impl<T> <a class="trait" href="../../../vulkano/device/trait.DeviceOwned.html" title="trait vulkano::device::DeviceOwned">DeviceOwned</a> for T <span class="where fmt-newline">where<br> T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/deref/trait.Deref.html" title="trait core::ops::deref::Deref">Deref</a>,<br> <T as <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/deref/trait.Deref.html" title="trait core::ops::deref::Deref">Deref</a>>::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/deref/trait.Deref.html#associatedtype.Target" title="type core::ops::deref::Deref::Target">Target</a>: <a class="trait" href="../../../vulkano/device/trait.DeviceOwned.html" title="trait vulkano::device::DeviceOwned">DeviceOwned</a>, </span></code><a href='#impl-DeviceOwned-1' class='anchor'></a><a class='srclink' href='../../../src/vulkano/device/mod.rs.html#557-565' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.device-1' class="method hidden"><code id='device.v-1'>fn <a href='../../../vulkano/device/trait.DeviceOwned.html#tymethod.device' class='fnname'>device</a>(<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&</a>Self) -> &<a class="struct" href="https://doc.rust-lang.org/nightly/alloc/sync/struct.Arc.html" title="struct alloc::sync::Arc">Arc</a><<a class="struct" href="../../../vulkano/device/struct.Device.html" title="struct vulkano::device::Device">Device</a>></code><a class='srclink' href='../../../src/vulkano/device/mod.rs.html#562-564' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns the device that owns <code>Self</code>.</p>
|
|
|
</div></div><h3 id='impl-Content' class='impl'><code class='in-band'>impl<T> <a class="trait" href="../../../vulkano/memory/trait.Content.html" title="trait vulkano::memory::Content">Content</a> for T</code><a href='#impl-Content' class='anchor'></a><a class='srclink' href='../../../src/vulkano/memory/mod.rs.html#171-190' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.ref_from_ptr' class="method hidden"><code id='ref_from_ptr.v'>fn <a href='../../../vulkano/memory/trait.Content.html#tymethod.ref_from_ptr' class='fnname'>ref_from_ptr</a>(<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.pointer.html">*mut </a><a class="enum" href="https://doc.rust-lang.org/nightly/core/ffi/enum.c_void.html" title="enum core::ffi::c_void">c_void</a>, <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -> <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a><<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.pointer.html">*mut T</a>></code><a class='srclink' href='../../../src/vulkano/memory/mod.rs.html#173-179' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Builds a pointer to this type from a raw pointer.</p>
|
|
|
</div><h4 id='method.is_size_suitable' class="method hidden"><code id='is_size_suitable.v'>fn <a href='../../../vulkano/memory/trait.Content.html#tymethod.is_size_suitable' class='fnname'>is_size_suitable</a>(<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../../../src/vulkano/memory/mod.rs.html#182-184' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns true if the size is suitable to store a type like this.</p>
|
|
|
</div><h4 id='method.indiv_size' class="method hidden"><code id='indiv_size.v'>fn <a href='../../../vulkano/memory/trait.Content.html#tymethod.indiv_size' class='fnname'>indiv_size</a>() -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a></code><a class='srclink' href='../../../src/vulkano/memory/mod.rs.html#187-189' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns the size of an individual element.</p>
|
|
|
</div></div><h3 id='impl-Into%3CU%3E' class='impl'><code class='in-band'>impl<T, U> <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a><U> for T <span class="where fmt-newline">where<br> U: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.From.html" title="trait core::convert::From">From</a><T>, </span></code><a href='#impl-Into%3CU%3E' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/convert.rs.html#544-549' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.into' class="method hidden"><code id='into.v'>fn <a href='https://doc.rust-lang.org/nightly/core/convert/trait.Into.html#tymethod.into' class='fnname'>into</a>(self) -> U</code><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/convert.rs.html#546-548' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the conversion.</p>
|
|
|
</div></div><h3 id='impl-From%3CT%3E' class='impl'><code class='in-band'>impl<T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.From.html" title="trait core::convert::From">From</a><T> for T</code><a href='#impl-From%3CT%3E' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/convert.rs.html#553-555' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.from' class="method hidden"><code id='from.v'>fn <a href='https://doc.rust-lang.org/nightly/core/convert/trait.From.html#tymethod.from' class='fnname'>from</a>(t: T) -> T</code><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/convert.rs.html#554' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the conversion.</p>
|
|
|
</div></div><h3 id='impl-TryFrom%3CU%3E' class='impl'><code class='in-band'>impl<T, U> <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.TryFrom.html" title="trait core::convert::TryFrom">TryFrom</a><U> for T <span class="where fmt-newline">where<br> U: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a><T>, </span></code><a href='#impl-TryFrom%3CU%3E' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/convert.rs.html#572-578' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error' class="type"><code id='Error.t'>type <a href='https://doc.rust-lang.org/nightly/core/convert/trait.TryFrom.html#associatedtype.Error' class="type">Error</a> = <a class="enum" href="https://doc.rust-lang.org/nightly/core/convert/enum.Infallible.html" title="enum core::convert::Infallible">Infallible</a></code></h4><div class='docblock'><p>The type returned in the event of a conversion error.</p>
|
|
|
</div><h4 id='method.try_from' class="method hidden"><code id='try_from.v'>fn <a href='https://doc.rust-lang.org/nightly/core/convert/trait.TryFrom.html#tymethod.try_from' class='fnname'>try_from</a>(value: U) -> <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a><T, <T as <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.TryFrom.html" title="trait core::convert::TryFrom">TryFrom</a><U>>::<a class="type" href="https://doc.rust-lang.org/nightly/core/convert/trait.TryFrom.html#associatedtype.Error" title="type core::convert::TryFrom::Error">Error</a>></code><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/convert.rs.html#575-577' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the conversion.</p>
|
|
|
</div></div><h3 id='impl-TryInto%3CU%3E' class='impl'><code class='in-band'>impl<T, U> <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.TryInto.html" title="trait core::convert::TryInto">TryInto</a><U> for T <span class="where fmt-newline">where<br> U: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.TryFrom.html" title="trait core::convert::TryFrom">TryFrom</a><T>, </span></code><a href='#impl-TryInto%3CU%3E' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/convert.rs.html#560-567' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-1' class="type"><code id='Error.t-1'>type <a href='https://doc.rust-lang.org/nightly/core/convert/trait.TryInto.html#associatedtype.Error' class="type">Error</a> = <U as <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.TryFrom.html" title="trait core::convert::TryFrom">TryFrom</a><T>>::<a class="type" href="https://doc.rust-lang.org/nightly/core/convert/trait.TryFrom.html#associatedtype.Error" title="type core::convert::TryFrom::Error">Error</a></code></h4><div class='docblock'><p>The type returned in the event of a conversion error.</p>
|
|
|
</div><h4 id='method.try_into' class="method hidden"><code id='try_into.v'>fn <a href='https://doc.rust-lang.org/nightly/core/convert/trait.TryInto.html#tymethod.try_into' class='fnname'>try_into</a>(self) -> <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a><U, <U as <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.TryFrom.html" title="trait core::convert::TryFrom">TryFrom</a><T>>::<a class="type" href="https://doc.rust-lang.org/nightly/core/convert/trait.TryFrom.html#associatedtype.Error" title="type core::convert::TryFrom::Error">Error</a>></code><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/convert.rs.html#564-566' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the conversion.</p>
|
|
|
</div></div><h3 id='impl-BorrowMut%3CT%3E' class='impl'><code class='in-band'>impl<T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/borrow/trait.BorrowMut.html" title="trait core::borrow::BorrowMut">BorrowMut</a><T> for T <span class="where fmt-newline">where<br> T: ?<a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>, </span></code><a href='#impl-BorrowMut%3CT%3E' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/borrow.rs.html#218-220' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.borrow_mut' class="method hidden"><code id='borrow_mut.v'>fn <a href='https://doc.rust-lang.org/nightly/core/borrow/trait.BorrowMut.html#tymethod.borrow_mut' class='fnname'>borrow_mut</a>(&mut self) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&mut </a>T</code><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/borrow.rs.html#219' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Mutably borrows from an owned value. <a href="https://doc.rust-lang.org/nightly/core/borrow/trait.BorrowMut.html#tymethod.borrow_mut">Read more</a></p>
|
|
|
</div></div><h3 id='impl-Borrow%3CT%3E' class='impl'><code class='in-band'>impl<T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/borrow/trait.Borrow.html" title="trait core::borrow::Borrow">Borrow</a><T> for T <span class="where fmt-newline">where<br> T: ?<a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>, </span></code><a href='#impl-Borrow%3CT%3E' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/borrow.rs.html#213-215' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.borrow' class="method hidden"><code id='borrow.v'>fn <a href='https://doc.rust-lang.org/nightly/core/borrow/trait.Borrow.html#tymethod.borrow' class='fnname'>borrow</a>(&self) -> <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&</a>T</code><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/borrow.rs.html#214' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Immutably borrows from an owned value. <a href="https://doc.rust-lang.org/nightly/core/borrow/trait.Borrow.html#tymethod.borrow">Read more</a></p>
|
|
|
</div></div><h3 id='impl-Any' class='impl'><code class='in-band'>impl<T> <a class="trait" href="https://doc.rust-lang.org/nightly/core/any/trait.Any.html" title="trait core::any::Any">Any</a> for T <span class="where fmt-newline">where<br> T: 'static + ?<a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>, </span></code><a href='#impl-Any' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/any.rs.html#100-102' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.type_id' class="method hidden"><code id='type_id.v'>fn <a href='https://doc.rust-lang.org/nightly/core/any/trait.Any.html#tymethod.type_id' class='fnname'>type_id</a>(&self) -> <a class="struct" href="https://doc.rust-lang.org/nightly/core/any/struct.TypeId.html" title="struct core::any::TypeId">TypeId</a></code><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/any.rs.html#101' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Gets the <code>TypeId</code> of <code>self</code>. <a href="https://doc.rust-lang.org/nightly/core/any/trait.Any.html#tymethod.type_id">Read more</a></p>
|
|
|
</div></div></div></section><section id="search" class="content hidden"></section><section class="footer"></section><aside id="help" class="hidden"><div><h1 class="hidden">Help</h1><div class="shortcuts"><h2>Keyboard Shortcuts</h2><dl><dt><kbd>?</kbd></dt><dd>Show this help dialog</dd><dt><kbd>S</kbd></dt><dd>Focus the search field</dd><dt><kbd>↑</kbd></dt><dd>Move up in search results</dd><dt><kbd>↓</kbd></dt><dd>Move down in search results</dd><dt><kbd>↹</kbd></dt><dd>Switch tab</dd><dt><kbd>⏎</kbd></dt><dd>Go to active search result</dd><dt><kbd>+</kbd></dt><dd>Expand all sections</dd><dt><kbd>-</kbd></dt><dd>Collapse all sections</dd></dl></div><div class="infos"><h2>Search Tricks</h2><p>Prefix searches with a type followed by a colon (e.g., <code>fn:</code>) to restrict the search to a given type.</p><p>Accepted types are: <code>fn</code>, <code>mod</code>, <code>struct</code>, <code>enum</code>, <code>trait</code>, <code>type</code>, <code>macro</code>, and <code>const</code>.</p><p>Search functions by type signature (e.g., <code>vec -> usize</code> or <code>* -> vec</code>)</p><p>Search multiple things at once by splitting your query with comma (e.g., <code>str,u8</code> or <code>String,struct:Vec,test</code>)</p></div></div></aside><script>window.rootPath = "../../../";window.currentCrate = "vulkano";</script><script src="../../../aliases.js"></script><script src="../../../main.js"></script><script defer src="../../../search-index.js"></script></body></html> |