pub struct IMPERMEABLE {
__private_field: (),
}
Fields§
§__private_field: ()
Methods from Deref<Target = Color>§
pub const CLEAR: Color
pub const BLACK: Color
pub const WHITE: Color
pub const RED: Color
pub const GREEN: Color
pub const BLUE: Color
pub const CYAN: Color
pub const YELLOW: Color
pub const PURPLE: Color
pub const PINK: Color
pub const ORANGE: Color
pub fn alpha(&self, a: f32) -> Color
pub fn alpha(&self, a: f32) -> Color
Note this is incorrect for Color::CLEAR
. Can’t fix in a const fn.
pub fn multiply_alpha(&self, factor: f32) -> Color
pub fn multiply_alpha(&self, factor: f32) -> Color
Multiply the color’s current alpha by the factor
, returning a new color.
pub fn as_hex(&self) -> String
Trait Implementations§
Source§impl Deref for IMPERMEABLE
impl Deref for IMPERMEABLE
impl LazyStatic for IMPERMEABLE
Auto Trait Implementations§
impl Freeze for IMPERMEABLE
impl RefUnwindSafe for IMPERMEABLE
impl Send for IMPERMEABLE
impl Sync for IMPERMEABLE
impl Unpin for IMPERMEABLE
impl UnwindSafe for IMPERMEABLE
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> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
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>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
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.