pub struct IconSpec {
pub size: f32,
pub tint: Option<Color>,
}Expand description
How an icon is drawn.
Fields§
§size: f32The square the icon is drawn in.
tint: Option<Color>The tint. None leaves the path’s own colouring, which is what a
multi-colour illustration wants.
Implementations§
Trait Implementations§
impl Copy for IconSpec
impl StructuralPartialEq for IconSpec
Auto Trait Implementations§
impl Freeze for IconSpec
impl RefUnwindSafe for IconSpec
impl Send for IconSpec
impl Sync for IconSpec
impl Unpin for IconSpec
impl UnsafeUnpin for IconSpec
impl UnwindSafe for IconSpec
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