logo
pub trait Primitive: Dimensions {
    fn into_styled<C>(
        self,
        style: PrimitiveStyle<C>
    ) -> Styled<Self, PrimitiveStyle<C>>
    where
        C: PixelColor,
        Self: Sized
, { ... } }
Expand description

Primitive trait

Provided methods

Converts this primitive into a Styled.

Implementors