Enum screen_13::graph::pass_ref::Subresource
source · pub enum Subresource {
AccelerationStructure,
Image(ImageSubresource),
Buffer(BufferSubresource),
}Expand description
Describes a portion of a resource which is bound.
Variants§
AccelerationStructure
Acceleration structures are bound whole.
Image(ImageSubresource)
Images may be partially bound.
Buffer(BufferSubresource)
Buffers may be partially bound.
Trait Implementations§
source§impl Clone for Subresource
impl Clone for Subresource
source§fn clone(&self) -> Subresource
fn clone(&self) -> Subresource
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for Subresource
impl Debug for Subresource
source§impl From<()> for Subresource
impl From<()> for Subresource
source§impl From<BufferSubresource> for Subresource
impl From<BufferSubresource> for Subresource
source§fn from(subresource: BufferSubresource) -> Self
fn from(subresource: BufferSubresource) -> Self
Converts to this type from the input type.
source§impl From<ImageSubresource> for Subresource
impl From<ImageSubresource> for Subresource
source§fn from(subresource: ImageSubresource) -> Self
fn from(subresource: ImageSubresource) -> Self
Converts to this type from the input type.
source§impl PartialEq<Subresource> for Subresource
impl PartialEq<Subresource> for Subresource
source§fn eq(&self, other: &Subresource) -> bool
fn eq(&self, other: &Subresource) -> bool
This method tests for
self and other values to be equal, and is used
by ==.