logo
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.

Safety
  • The Device must be the device the pool of this set was created with.
  • 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.

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

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.