pub struct Styled<T, S> {
    pub primitive: T,
    pub style: S,
}
Expand description

Styled.

Fields§

§primitive: T

Primitive.

§style: S

Style.

Implementations§

source§

impl<T, S> Styled<T, S>

source

pub fn new(primitive: T, style: S) -> Self

Creates a styled.

Trait Implementations§

source§

impl<T: Clone, S: Clone> Clone for Styled<T, S>

source§

fn clone(&self) -> Styled<T, S>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T: Debug, S: Debug> Debug for Styled<T, S>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T: Default, S: Default> Default for Styled<T, S>

source§

fn default() -> Styled<T, S>

Returns the “default value” for a type. Read more
source§

impl<T, S> Dimensions for Styled<T, S>
where T: Dimensions,

source§

fn top_left(&self) -> Point

Get the top left corner of the bounding box for an object
source§

fn bottom_right(&self) -> Point

Get the bottom right corner of the bounding box for an object
source§

fn size(&self) -> Size

Get the width and height for an object
source§

impl<C, F> Dimensions for Styled<Text<'_>, TextStyle<C, F>>
where C: PixelColor, F: Font,

source§

fn size(&self) -> Size

Returns the size of the bounding box of a styled text.

Currently does not handle newlines (but neither does the rasteriser). It will return Size::zero() if the string to render is empty.

source§

fn top_left(&self) -> Point

Get the top left corner of the bounding box for an object
source§

fn bottom_right(&self) -> Point

Get the bottom right corner of the bounding box for an object
source§

impl<'a, C> Drawable<C> for &Styled<Circle, PrimitiveStyle<C>>
where C: PixelColor + 'a,

source§

fn draw<D: DrawTarget<C>>(self, display: &mut D) -> Result<(), D::Error>

Draw the graphics object using the supplied DrawTarget.
source§

impl<'a, C> Drawable<C> for &Styled<Line, PrimitiveStyle<C>>
where C: PixelColor + 'a,

source§

fn draw<D: DrawTarget<C>>(self, display: &mut D) -> Result<(), D::Error>

Draw the graphics object using the supplied DrawTarget.
source§

impl<C> Drawable<C> for &Styled<Rectangle, PrimitiveStyle<C>>
where C: PixelColor,

source§

fn draw<D: DrawTarget<C>>(self, display: &mut D) -> Result<(), D::Error>

Draw the graphics object using the supplied DrawTarget.
source§

impl<C, F> Drawable<C> for &Styled<Text<'_>, TextStyle<C, F>>
where C: PixelColor, F: Font + Copy,

source§

fn draw<D: DrawTarget<C>>(self, display: &mut D) -> Result<(), D::Error>

Draw the graphics object using the supplied DrawTarget.
source§

impl<'a, C> Drawable<C> for &Styled<Triangle, PrimitiveStyle<C>>
where C: PixelColor + 'a,

source§

fn draw<D: DrawTarget<C>>(self, display: &mut D) -> Result<(), D::Error>

Draw the graphics object using the supplied DrawTarget.
source§

impl<T: Hash, S: Hash> Hash for Styled<T, S>

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl<'a, C> IntoIterator for &'a Styled<Circle, PrimitiveStyle<C>>
where C: PixelColor,

§

type Item = Pixel<C>

The type of the elements being iterated over.
§

type IntoIter = StyledCircleIterator<C>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a, C> IntoIterator for &'a Styled<Line, PrimitiveStyle<C>>
where C: PixelColor,

§

type Item = Pixel<C>

The type of the elements being iterated over.
§

type IntoIter = StyledLineIterator<C>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<C> IntoIterator for &Styled<Rectangle, PrimitiveStyle<C>>
where C: PixelColor,

§

type Item = Pixel<C>

The type of the elements being iterated over.
§

type IntoIter = StyledRectangleIterator<C>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a, C, F> IntoIterator for &Styled<Text<'a>, TextStyle<C, F>>
where C: PixelColor, F: Font + Copy,

§

type Item = Pixel<C>

The type of the elements being iterated over.
§

type IntoIter = StyledTextIterator<'a, C, F>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<C> IntoIterator for &Styled<Triangle, PrimitiveStyle<C>>
where C: PixelColor,

§

type Item = Pixel<C>

The type of the elements being iterated over.
§

type IntoIter = StyledTriangleIterator<C>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<T: Ord, S: Ord> Ord for Styled<T, S>

source§

fn cmp(&self, other: &Styled<T, S>) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
source§

impl<T: PartialEq, S: PartialEq> PartialEq for Styled<T, S>

source§

fn eq(&self, other: &Styled<T, S>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<T: PartialOrd, S: PartialOrd> PartialOrd for Styled<T, S>

source§

fn partial_cmp(&self, other: &Styled<T, S>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl<T, S> Transform for Styled<T, S>
where T: Transform, S: Clone,

source§

fn translate(&self, by: Point) -> Self

Move the origin of an object by a given number of (x, y) pixels, returning a new object
source§

fn translate_mut(&mut self, by: Point) -> &mut Self

Move the origin of an object by a given number of (x, y) pixels, mutating the object in place
source§

impl<T: Copy, S: Copy> Copy for Styled<T, S>

source§

impl<T: Eq, S: Eq> Eq for Styled<T, S>

source§

impl<T, S> StructuralPartialEq for Styled<T, S>

Auto Trait Implementations§

§

impl<T, S> RefUnwindSafe for Styled<T, S>

§

impl<T, S> Send for Styled<T, S>
where S: Send, T: Send,

§

impl<T, S> Sync for Styled<T, S>
where S: Sync, T: Sync,

§

impl<T, S> Unpin for Styled<T, S>
where S: Unpin, T: Unpin,

§

impl<T, S> UnwindSafe for Styled<T, S>
where S: UnwindSafe, T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.