pub struct PuppetMeshPath {
pub closed: bool,
pub points: Vec<PuppetMeshPoint>,
}Expand description
puppet mesh boundary path.
Fields§
§closed: bool§points: Vec<PuppetMeshPoint>Trait Implementations§
Source§impl Clone for PuppetMeshPath
impl Clone for PuppetMeshPath
Source§fn clone(&self) -> PuppetMeshPath
fn clone(&self) -> PuppetMeshPath
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PuppetMeshPath
impl Debug for PuppetMeshPath
Source§impl Default for PuppetMeshPath
impl Default for PuppetMeshPath
Source§fn default() -> PuppetMeshPath
fn default() -> PuppetMeshPath
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PuppetMeshPath
impl RefUnwindSafe for PuppetMeshPath
impl Send for PuppetMeshPath
impl Sync for PuppetMeshPath
impl Unpin for PuppetMeshPath
impl UnsafeUnpin for PuppetMeshPath
impl UnwindSafe for PuppetMeshPath
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