#[repr(C)]pub struct PLYCornerRadii {
pub top_left: PLYPoint,
pub top_right: PLYPoint,
pub bottom_right: PLYPoint,
pub bottom_left: PLYPoint,
}Expand description
The radius to use when drawing rounded corners for a view’s background.
Fields§
§top_left: PLYPointThe radius to use when drawing the rounded top left corner for a view’s background.
top_right: PLYPointThe radius to use when drawing the rounded top right corner for a view’s background.
bottom_right: PLYPointThe radius to use when drawing the rounded bottom left corner for a view’s background.
bottom_left: PLYPointThe radius to use when drawing the rounded bottom right corner for a view’s background.
Trait Implementations§
Source§impl Clone for PLYCornerRadii
impl Clone for PLYCornerRadii
Source§fn clone(&self) -> PLYCornerRadii
fn clone(&self) -> PLYCornerRadii
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 PLYCornerRadii
impl Debug for PLYCornerRadii
impl Copy for PLYCornerRadii
Auto Trait Implementations§
impl Freeze for PLYCornerRadii
impl RefUnwindSafe for PLYCornerRadii
impl Send for PLYCornerRadii
impl Sync for PLYCornerRadii
impl Unpin for PLYCornerRadii
impl UnsafeUnpin for PLYCornerRadii
impl UnwindSafe for PLYCornerRadii
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