pub struct ColorSum {
pub r: u32,
pub g: u32,
pub b: u32,
pub a: u32,
pub counter: u32,
}Expand description
RGBA; each channel is 32 bit unsigned
Fields§
§r: u32§g: u32§b: u32§a: u32§counter: u32Implementations§
Trait Implementations§
impl Copy for ColorSum
impl Eq for ColorSum
impl StructuralPartialEq for ColorSum
Auto Trait Implementations§
impl Freeze for ColorSum
impl RefUnwindSafe for ColorSum
impl Send for ColorSum
impl Sync for ColorSum
impl Unpin for ColorSum
impl UnwindSafe for ColorSum
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more