#[repr(C)]pub struct WGPURenderPipelineDescriptor {
pub nextInChain: *mut WGPUChainedStruct,
pub label: WGPUStringView,
pub layout: WGPUPipelineLayout,
pub vertex: WGPUVertexState,
pub primitive: WGPUPrimitiveState,
pub depthStencil: *const WGPUDepthStencilState,
pub multisample: WGPUMultisampleState,
pub fragment: *const WGPUFragmentState,
}Fields§
§nextInChain: *mut WGPUChainedStruct§label: WGPUStringView§layout: WGPUPipelineLayout§vertex: WGPUVertexState§primitive: WGPUPrimitiveState§depthStencil: *const WGPUDepthStencilState§multisample: WGPUMultisampleState§fragment: *const WGPUFragmentStateTrait Implementations§
Source§impl Clone for WGPURenderPipelineDescriptor
impl Clone for WGPURenderPipelineDescriptor
Source§fn clone(&self) -> WGPURenderPipelineDescriptor
fn clone(&self) -> WGPURenderPipelineDescriptor
Returns a duplicate 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 WGPURenderPipelineDescriptor
impl Debug for WGPURenderPipelineDescriptor
Source§impl Hash for WGPURenderPipelineDescriptor
impl Hash for WGPURenderPipelineDescriptor
Source§impl Ord for WGPURenderPipelineDescriptor
impl Ord for WGPURenderPipelineDescriptor
Source§fn cmp(&self, other: &WGPURenderPipelineDescriptor) -> Ordering
fn cmp(&self, other: &WGPURenderPipelineDescriptor) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for WGPURenderPipelineDescriptor
impl PartialEq for WGPURenderPipelineDescriptor
Source§fn eq(&self, other: &WGPURenderPipelineDescriptor) -> bool
fn eq(&self, other: &WGPURenderPipelineDescriptor) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for WGPURenderPipelineDescriptor
impl PartialOrd for WGPURenderPipelineDescriptor
impl Copy for WGPURenderPipelineDescriptor
impl Eq for WGPURenderPipelineDescriptor
impl StructuralPartialEq for WGPURenderPipelineDescriptor
Auto Trait Implementations§
impl Freeze for WGPURenderPipelineDescriptor
impl RefUnwindSafe for WGPURenderPipelineDescriptor
impl !Send for WGPURenderPipelineDescriptor
impl !Sync for WGPURenderPipelineDescriptor
impl Unpin for WGPURenderPipelineDescriptor
impl UnwindSafe for WGPURenderPipelineDescriptor
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