pub struct SegmentBezier {
pub control1: Point,
pub control2: Point,
pub end: Point,
}
Fields§
§control1: Point
§control2: Point
§end: Point
Trait Implementations§
Source§impl Clone for SegmentBezier
impl Clone for SegmentBezier
Source§fn clone(&self) -> SegmentBezier
fn clone(&self) -> SegmentBezier
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 SegmentBezier
impl Debug for SegmentBezier
impl Copy for SegmentBezier
Auto Trait Implementations§
impl Freeze for SegmentBezier
impl RefUnwindSafe for SegmentBezier
impl Send for SegmentBezier
impl Sync for SegmentBezier
impl Unpin for SegmentBezier
impl UnwindSafe for SegmentBezier
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