Struct zng_layout::unit::Rgba

source ·
#[repr(C)]
pub struct Rgba { pub red: f32, pub green: f32, pub blue: f32, pub alpha: f32, }
Expand description

RGB + alpha.

§Equality

Equality is determined using about_eq with 0.00001 epsilon.

Fields§

§red: f32

Red channel value, in the [0.0..=1.0] range.

§green: f32

Green channel value, in the [0.0..=1.0] range.

§blue: f32

Blue channel value, in the [0.0..=1.0] range.

§alpha: f32

Alpha channel value, in the [0.0..=1.0] range.

Implementations§

source§

impl Rgba

source

pub fn new<C, A>(red: C, green: C, blue: C, alpha: A) -> Rgba

New from RGB of a the same type and A that can be of a different type.

source

pub fn set_red<R>(&mut self, red: R)
where R: Into<RgbaComponent>,

Set the red component from any type that converts to RgbaComponent.

source

pub fn set_green<G>(&mut self, green: G)
where G: Into<RgbaComponent>,

Set the green component from any type that converts to RgbaComponent.

source

pub fn set_blue<B>(&mut self, blue: B)
where B: Into<RgbaComponent>,

Set the blue component from any type that converts to RgbaComponent.

source

pub fn set_alpha<A>(&mut self, alpha: A)
where A: Into<RgbaComponent>,

Set the alpha component from any type that converts to RgbaComponent.

source

pub fn with_red<R>(self, red: R) -> Rgba
where R: Into<RgbaComponent>,

Returns a copy of the color with a new red value.

source

pub fn with_green<R>(self, green: R) -> Rgba
where R: Into<RgbaComponent>,

Returns a copy of the color with a new green value.

source

pub fn with_blue<B>(self, blue: B) -> Rgba
where B: Into<RgbaComponent>,

Returns a copy of the color with a new blue value.

source

pub fn with_alpha<A>(self, alpha: A) -> Rgba
where A: Into<RgbaComponent>,

Returns a copy of the color with a new alpha value.

source

pub fn transparent(self) -> Rgba

Returns a copy of the color with the alpha set to 0.

source

pub fn to_bytes(self) -> [u8; 4]

Convert a copy to [R, G, B, A] bytes.

Trait Implementations§

source§

impl Add for Rgba

§

type Output = Rgba

The resulting type after applying the + operator.
source§

fn add(self, rhs: Rgba) -> <Rgba as Add>::Output

Performs the + operation. Read more
source§

impl AddAssign for Rgba

source§

fn add_assign(&mut self, rhs: Rgba)

Performs the += operation. Read more
source§

impl Clone for Rgba

source§

fn clone(&self) -> Rgba

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Rgba

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Default for Rgba

source§

fn default() -> Rgba

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for Rgba

source§

fn deserialize<__D>( __deserializer: __D ) -> Result<Rgba, <__D as Deserializer<'de>>::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl Display for Rgba

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Hash for Rgba

source§

fn hash<H>(&self, state: &mut H)
where H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq for Rgba

source§

fn eq(&self, other: &Rgba) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for Rgba

source§

fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl Sub for Rgba

§

type Output = Rgba

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Rgba) -> <Rgba as Sub>::Output

Performs the - operation. Read more
source§

impl SubAssign for Rgba

source§

fn sub_assign(&mut self, rhs: Rgba)

Performs the -= operation. Read more
source§

impl Transitionable for Rgba

source§

fn lerp(self, to: &Rgba, step: Factor) -> Rgba

Sample the linear interpolation from self -> to by step.
source§

impl Copy for Rgba

Auto Trait Implementations§

§

impl Freeze for Rgba

§

impl RefUnwindSafe for Rgba

§

impl Send for Rgba

§

impl Sync for Rgba

§

impl Unpin for Rgba

§

impl UnwindSafe for Rgba

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> AnyVarValue for T
where T: VarValue,

source§

fn as_any(&self) -> &(dyn Any + 'static)

Access to dyn Any methods.
source§

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

Access to mut dyn Any methods.
source§

fn clone_boxed(&self) -> Box<dyn AnyVarValue>

Clone the value.
source§

fn clone_boxed_var(&self) -> Box<dyn AnyVar>

Clone the value into a new boxed LocalVar<Self>.
source§

fn into_any(self: Box<T>) -> Box<dyn Any>

Access to Box<dyn Any> methods.
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

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 more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
source§

impl<T> IntoVar<T> for T
where T: VarValue,

§

type Var = LocalVar<T>

Variable type that will wrap the T value. Read more
source§

fn into_var(self) -> <T as IntoVar<T>>::Var

Converts the source value into a var.
source§

fn into_boxed_var(self) -> Box<dyn VarBoxed<T>>
where Self: Sized,

Converts into BoxedVar<T>. Read more
§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T> ToTxt for T
where T: ToString,

source§

fn to_txt(&self) -> Txt

Converts the given value to an owned Txt. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

source§

impl<T> IntoValue<T> for T
where T: VarValue,

source§

impl<T> VarValue for T
where T: Debug + Clone + PartialEq + Any + Send + Sync,