pub struct RayTracingPipelineCreateInfo {
pub shaders: Vec<ShaderCreateInfo>,
/* private fields */
}
Expand description
Ray tracing pipeline create info. Prefer using the buidler to construct this correctly
Fields§
§shaders: Vec<ShaderCreateInfo>
All shaders used. These must always be sorted by their type.
Trait Implementations§
Source§impl Clone for RayTracingPipelineCreateInfo
impl Clone for RayTracingPipelineCreateInfo
Source§fn clone(&self) -> RayTracingPipelineCreateInfo
fn clone(&self) -> RayTracingPipelineCreateInfo
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for RayTracingPipelineCreateInfo
impl Debug for RayTracingPipelineCreateInfo
Source§impl Hash for RayTracingPipelineCreateInfo
impl Hash for RayTracingPipelineCreateInfo
Source§impl PartialEq for RayTracingPipelineCreateInfo
impl PartialEq for RayTracingPipelineCreateInfo
Source§fn eq(&self, other: &RayTracingPipelineCreateInfo) -> bool
fn eq(&self, other: &RayTracingPipelineCreateInfo) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Eq for RayTracingPipelineCreateInfo
impl StructuralPartialEq for RayTracingPipelineCreateInfo
Auto Trait Implementations§
impl Freeze for RayTracingPipelineCreateInfo
impl RefUnwindSafe for RayTracingPipelineCreateInfo
impl !Send for RayTracingPipelineCreateInfo
impl !Sync for RayTracingPipelineCreateInfo
impl Unpin for RayTracingPipelineCreateInfo
impl UnwindSafe for RayTracingPipelineCreateInfo
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.