pub struct BinColor {
pub r: u8,
pub g: u8,
pub b: u8,
pub a: u8,
}Expand description
Color bin value (RGBA)
Fields§
§r: u8§g: u8§b: u8§a: u8Trait Implementations§
Source§impl<BV: BinVisitor + ?Sized> BinTraversal<BV> for BinColor
impl<BV: BinVisitor + ?Sized> BinTraversal<BV> for BinColor
Auto Trait Implementations§
impl Freeze for BinColor
impl RefUnwindSafe for BinColor
impl Send for BinColor
impl Sync for BinColor
impl Unpin for BinColor
impl UnsafeUnpin for BinColor
impl UnwindSafe for BinColor
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