pub struct UniformColorCtx {
pub r: f32,
pub g: f32,
pub b: f32,
pub a: f32,
pub rgba: [u16; 4],
}
Fields§
§r: f32
§g: f32
§b: f32
§a: f32
§rgba: [u16; 4]
Trait Implementations§
Source§impl Clone for UniformColorCtx
impl Clone for UniformColorCtx
Source§fn clone(&self) -> UniformColorCtx
fn clone(&self) -> UniformColorCtx
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 UniformColorCtx
impl Debug for UniformColorCtx
Source§impl Default for UniformColorCtx
impl Default for UniformColorCtx
Source§fn default() -> UniformColorCtx
fn default() -> UniformColorCtx
Returns the “default value” for a type. Read more
impl Copy for UniformColorCtx
Auto Trait Implementations§
impl Freeze for UniformColorCtx
impl RefUnwindSafe for UniformColorCtx
impl Send for UniformColorCtx
impl Sync for UniformColorCtx
impl Unpin for UniformColorCtx
impl UnwindSafe for UniformColorCtx
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