Struct comfy_wgpu::LightUniform
source · #[repr(C)]pub struct LightUniform {
pub lights: [Light; 128],
pub num_lights: i32,
/* private fields */
}Fields§
§lights: [Light; 128]§num_lights: i32Trait Implementations§
source§impl Clone for LightUniform
impl Clone for LightUniform
source§fn clone(&self) -> LightUniform
fn clone(&self) -> LightUniform
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 LightUniform
impl Debug for LightUniform
source§impl Default for LightUniform
impl Default for LightUniform
source§fn default() -> LightUniform
fn default() -> LightUniform
Returns the “default value” for a type. Read more
impl Copy for LightUniform
impl Pod for LightUniform
Auto Trait Implementations§
impl RefUnwindSafe for LightUniform
impl Send for LightUniform
impl Sync for LightUniform
impl Unpin for LightUniform
impl UnwindSafe for LightUniform
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> CheckedBitPattern for Twhere
T: AnyBitPattern,
impl<T> CheckedBitPattern for Twhere T: AnyBitPattern,
§type Bits = T
type Bits = T
Self must have the same layout as the specified Bits except for
the possible invalid bit patterns being checked during
is_valid_bit_pattern.source§fn is_valid_bit_pattern(_bits: &T) -> bool
fn is_valid_bit_pattern(_bits: &T) -> bool
If this function returns true, then it must be valid to reinterpret
bits
as &Self.