pub struct ResolvedColor {
pub red: u8,
pub green: u8,
pub blue: u8,
pub alpha: u8,
}Expand description
A concrete colour after its DrawingML transform stack is applied.
Fields§
§red: u8§green: u8§blue: u8§alpha: u8Implementations§
Trait Implementations§
Source§impl Clone for ResolvedColor
impl Clone for ResolvedColor
Source§fn clone(&self) -> ResolvedColor
fn clone(&self) -> ResolvedColor
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ResolvedColor
Source§impl Debug for ResolvedColor
impl Debug for ResolvedColor
impl Eq for ResolvedColor
Source§impl PartialEq for ResolvedColor
impl PartialEq for ResolvedColor
impl StructuralPartialEq for ResolvedColor
Auto Trait Implementations§
impl Freeze for ResolvedColor
impl RefUnwindSafe for ResolvedColor
impl Send for ResolvedColor
impl Sync for ResolvedColor
impl Unpin for ResolvedColor
impl UnsafeUnpin for ResolvedColor
impl UnwindSafe for ResolvedColor
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