pub struct GMPath {
pub name: String,
pub is_smooth: bool,
pub is_closed: bool,
pub precision: u32,
pub points: Vec<Point>,
}Fields§
§name: String§is_smooth: bool§is_closed: bool§precision: u32§points: Vec<Point>Trait Implementations§
Source§impl GMNamedElement for GMPath
impl GMNamedElement for GMPath
impl GMElement for GMPath
impl StructuralPartialEq for GMPath
Auto Trait Implementations§
impl Freeze for GMPath
impl RefUnwindSafe for GMPath
impl Send for GMPath
impl Sync for GMPath
impl Unpin for GMPath
impl UnsafeUnpin for GMPath
impl UnwindSafe for GMPath
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