#[repr(C, packed(4))]pub struct PaletteColor {
pub next: Pointer<PaletteColor>,
pub prev: Pointer<PaletteColor>,
pub rgb: [f32; 3],
pub value: f32,
}Fields§
§next: Pointer<PaletteColor>§prev: Pointer<PaletteColor>§rgb: [f32; 3]§value: f32Trait Implementations§
Source§impl DoubleLinked<Pointer<PaletteColor>> for PaletteColor
impl DoubleLinked<Pointer<PaletteColor>> for PaletteColor
Source§impl GeneratedBlendStruct for PaletteColor
impl GeneratedBlendStruct for PaletteColor
const BLEND_VERSION: Version
const BLEND_POINTER_SIZE: usize = 8usize
const BLEND_ENDIANNESS: Endianness = Endianness::Little
const STRUCT_NAME: &'static str = "PaletteColor"
const STRUCT_INDEX: usize = 551usize
const STRUCT_TYPE_INDEX: usize = 683usize
const IS_SYNTHETIC: bool = false
impl PointerTarget<PaletteColor> for PaletteColor
Auto Trait Implementations§
impl Freeze for PaletteColor
impl RefUnwindSafe for PaletteColor
impl Send for PaletteColor
impl Sync for PaletteColor
impl Unpin for PaletteColor
impl UnwindSafe for PaletteColor
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