pub struct OutlineCorner {
pub x: f64,
pub y: f64,
pub z: f64,
pub height: Option<f64>,
}Expand description
Represents a single corner point of an Outline.
height is Some when the corner has an explicit height attribute, None otherwise.
Fields§
§x: f64§y: f64§z: f64§height: Option<f64>Auto Trait Implementations§
impl Freeze for OutlineCorner
impl RefUnwindSafe for OutlineCorner
impl Send for OutlineCorner
impl Sync for OutlineCorner
impl Unpin for OutlineCorner
impl UnsafeUnpin for OutlineCorner
impl UnwindSafe for OutlineCorner
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