pub struct RectBlueprint {
pub rect: Rect,
pub color: u32,
pub border_color: u32,
pub border_width: f32,
pub corner_radius: f32,
pub borders: [bool; 4],
pub alpha: f32,
}
Fields§
§rect: Rect
§color: u32
§border_color: u32
§border_width: f32
§corner_radius: f32
§borders: [bool; 4]
§alpha: f32
Auto Trait Implementations§
impl Freeze for RectBlueprint
impl RefUnwindSafe for RectBlueprint
impl Send for RectBlueprint
impl Sync for RectBlueprint
impl Unpin for RectBlueprint
impl UnwindSafe for RectBlueprint
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