#[repr(C)]pub struct uiDrawBrush {
pub Type: uiDrawBrushType,
pub R: f64,
pub G: f64,
pub B: f64,
pub A: f64,
pub X0: f64,
pub Y0: f64,
pub X1: f64,
pub Y1: f64,
pub OuterRadius: f64,
pub Stops: *mut uiDrawBrushGradientStop,
pub NumStops: usize,
}
Fields§
§Type: uiDrawBrushType
§R: f64
§G: f64
§B: f64
§A: f64
§X0: f64
§Y0: f64
§X1: f64
§Y1: f64
§OuterRadius: f64
§Stops: *mut uiDrawBrushGradientStop
§NumStops: usize
Trait Implementations§
Source§impl Clone for uiDrawBrush
impl Clone for uiDrawBrush
Source§fn clone(&self) -> uiDrawBrush
fn clone(&self) -> uiDrawBrush
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for uiDrawBrush
impl Debug for uiDrawBrush
impl Copy for uiDrawBrush
Auto Trait Implementations§
impl Freeze for uiDrawBrush
impl RefUnwindSafe for uiDrawBrush
impl !Send for uiDrawBrush
impl !Sync for uiDrawBrush
impl Unpin for uiDrawBrush
impl UnwindSafe for uiDrawBrush
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