pub struct UnsafeDescriptorSet { /* private fields */ }
Expand description

Low-level descriptor set.

Contrary to most other objects in this library, this one doesn’t free itself automatically and doesn’t hold the pool or the device it is associated to. Instead it is an object meant to be used with the UnsafeDescriptorPool.

Implementations

Modifies a descriptor set. Doesn’t check that the writes or copies are correct, and doesn’t check whether the descriptor set is in use.

Important: You must ensure that the UnsafeDescriptorSetLayout object is alive before updating a descriptor set.

Safety
  • The Device must be the device the pool of this set was created with.
  • The UnsafeDescriptorSetLayout object this set was created with must be alive.
  • Doesn’t verify that the things you write in the descriptor set match its layout.
  • Doesn’t keep the resources alive. You have to do that yourself.
  • Updating a descriptor set obeys synchronization rules that aren’t checked here. Once a command buffer contains a pointer/reference to a descriptor set, it is illegal to write to it.

Trait Implementations

Formats the value using the given formatter. Read more
The type of the object.
The DebugReportObjectTypeEXT of the internal Vulkan handle.
Returns a reference to the object.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
Builds a pointer to this type from a raw pointer.
Returns true if the size is suitable to store a type like this.
Returns the size of an individual element.

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.