Struct slint::platform::software_renderer::PremultipliedRgbaColor
#[repr(C)]pub struct PremultipliedRgbaColor {
pub red: u8,
pub green: u8,
pub blue: u8,
pub alpha: u8,
}
Expand description
Fieldsยง
ยงred: u8
ยงgreen: u8
ยงblue: u8
ยงalpha: u8
Trait Implementationsยง
ยงimpl Clone for PremultipliedRgbaColor
impl Clone for PremultipliedRgbaColor
ยงfn clone(&self) -> PremultipliedRgbaColor
fn clone(&self) -> PremultipliedRgbaColor
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 moreยงimpl Debug for PremultipliedRgbaColor
impl Debug for PremultipliedRgbaColor
ยงimpl Default for PremultipliedRgbaColor
impl Default for PremultipliedRgbaColor
ยงfn default() -> PremultipliedRgbaColor
fn default() -> PremultipliedRgbaColor
Returns the โdefault valueโ for a type. Read more
ยงimpl From<Color> for PremultipliedRgbaColor
impl From<Color> for PremultipliedRgbaColor
Convert a non-premultiplied color to a premultiplied one
ยงfn from(col: Color) -> PremultipliedRgbaColor
fn from(col: Color) -> PremultipliedRgbaColor
Converts to this type from the input type.
ยงimpl TargetPixel for PremultipliedRgbaColor
impl TargetPixel for PremultipliedRgbaColor
ยงfn blend(&mut self, color: PremultipliedRgbaColor)
fn blend(&mut self, color: PremultipliedRgbaColor)
Blend a single pixel with a color
ยงfn from_rgb(r: u8, g: u8, b: u8) -> PremultipliedRgbaColor
fn from_rgb(r: u8, g: u8, b: u8) -> PremultipliedRgbaColor
Create a pixel from the red, gree, blue component in the range 0..=255
ยงfn blend_slice(slice: &mut [Self], color: PremultipliedRgbaColor)
fn blend_slice(slice: &mut [Self], color: PremultipliedRgbaColor)
Blend a color to all the pixel in the slice.
impl Copy for PremultipliedRgbaColor
impl Pod for PremultipliedRgbaColor
Auto Trait Implementationsยง
impl RefUnwindSafe for PremultipliedRgbaColor
impl Send for PremultipliedRgbaColor
impl Sync for PremultipliedRgbaColor
impl Unpin for PremultipliedRgbaColor
impl UnwindSafe for PremultipliedRgbaColor
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
ยง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
.ยง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
.ยงimpl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere T: Any,
ยงfn into_any(self: Box<T, Global>) -> Box<dyn Any, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any, Global>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.ยงfn into_any_rc(self: Rc<T, Global>) -> Rc<dyn Any, Global>
fn into_any_rc(self: Rc<T, Global>) -> Rc<dyn Any, Global>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.ยงfn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
โs vtable from &Trait
โs.ยงfn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
โs vtable from &mut Trait
โs.sourceยงimpl<T> Instrument for T
impl<T> Instrument for T
sourceยงfn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourceยงfn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
ยงimpl<T> NoneValue for Twhere
T: Default,
impl<T> NoneValue for Twhere T: Default,
type NoneType = T
ยงfn null_value() -> T
fn null_value() -> T
The none-equivalent value.
ยงimpl<T> Pointable for T
impl<T> Pointable for T
sourceยงimpl<R, P> ReadPrimitive<R> for Pwhere
R: Read + ReadEndian<P>,
P: Default,
impl<R, P> ReadPrimitive<R> for Pwhere R: Read + ReadEndian<P>, P: Default,
sourceยงfn read_from_little_endian(read: &mut R) -> Result<Self, Error>
fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as
ReadEndian::read_from_little_endian()
.