pub struct BezierPath {
pub c: bool,
pub i: Vec<Vec2>,
pub o: Vec<Vec2>,
pub v: Vec<Vec2>,
}Fields§
§c: bool§i: Vec<Vec2>§o: Vec<Vec2>§v: Vec<Vec2>Trait Implementations§
Source§impl Clone for BezierPath
impl Clone for BezierPath
Source§fn clone(&self) -> BezierPath
fn clone(&self) -> BezierPath
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 BezierPath
impl Debug for BezierPath
Source§impl Default for BezierPath
impl Default for BezierPath
Source§fn default() -> BezierPath
fn default() -> BezierPath
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BezierPath
impl<'de> Deserialize<'de> for BezierPath
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for BezierPath
impl RefUnwindSafe for BezierPath
impl Send for BezierPath
impl Sync for BezierPath
impl Unpin for BezierPath
impl UnwindSafe for BezierPath
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