pub struct NETWORK_PAINTED_LANE {
__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 NETWORK_PAINTED_LANE
impl Deref for NETWORK_PAINTED_LANE
impl LazyStatic for NETWORK_PAINTED_LANE
Auto Trait Implementations§
impl Freeze for NETWORK_PAINTED_LANE
impl RefUnwindSafe for NETWORK_PAINTED_LANE
impl Send for NETWORK_PAINTED_LANE
impl Sync for NETWORK_PAINTED_LANE
impl Unpin for NETWORK_PAINTED_LANE
impl UnwindSafe for NETWORK_PAINTED_LANE
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.