Skip to main content

DrawRectangleArgs

Struct DrawRectangleArgs 

Source
#[non_exhaustive]
pub struct DrawRectangleArgs {
Show 13 fields pub x: f32, pub y: f32, pub width: f32, pub height: f32, pub top_left_radius: f32, pub top_right_radius: f32, pub bottom_right_radius: f32, pub bottom_left_radius: f32, pub border_width: f32, pub background: Brush, pub border: Brush, pub alpha: u8, pub rotation: RenderingRotation,
}
Available on crate feature experimental only.
Expand description

This structure describes the properties of a rectangle for blending with TargetPixelBuffer::draw_rectangle.

All the coordinate are in physical pixels

Fields (Non-exhaustive)§

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
§x: f32

The x position in the destination buffer

§y: f32

The y position in the destination buffer

§width: f32

The width of the image in the destination.

§height: f32

The height of the image in the destination.

§top_left_radius: f32

The top-left radius.

§top_right_radius: f32

The top-right radius.

§bottom_right_radius: f32

The bottom-right radius.

§bottom_left_radius: f32

The bottom-left radius.

§border_width: f32

The width of the border.

§background: Brush

The background of the rectangle

§border: Brush

The border of the rectangle

§alpha: u8

A value between 0 and 255 that specifies the opacity. A value of 0 would mean that the rectangle is fully transparent (so nothing is drawn), and a value of 255 would mean fully opaque. Note that the brush also might have an alpha value and the two values should be combined.

§rotation: RenderingRotation

An extra rotation that should be applied to the gradient (and only to the gradient, it doesn’t impact the border radius)

Trait Implementations§

Source§

impl Debug for DrawRectangleArgs

Source§

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

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

impl Default for DrawRectangleArgs

Source§

fn default() -> DrawRectangleArgs

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

Auto Trait Implementations§

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>,

Source§

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>,

Source§

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.