#[repr(C)]pub struct OutlineCornerData {
pub x: f64,
pub y: f64,
pub z: f64,
pub has_height: bool,
pub height: f64,
}Expand description
Shared struct for outline corner data.
This is a flat representation of OutlineCorner to avoid a new opaque CXX type.
height is 0.0 when has_height is false.
Fields§
§x: f64§y: f64§z: f64§has_height: bool§height: f64Trait Implementations§
Source§impl ExternType for OutlineCornerData
impl ExternType for OutlineCornerData
Auto Trait Implementations§
impl Freeze for OutlineCornerData
impl RefUnwindSafe for OutlineCornerData
impl Send for OutlineCornerData
impl Sync for OutlineCornerData
impl Unpin for OutlineCornerData
impl UnsafeUnpin for OutlineCornerData
impl UnwindSafe for OutlineCornerData
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