pub struct PathAttachmentData {
pub vertex_id: u32,
pub name: String,
pub vertices: MeshVertices,
pub lengths: Vec<f32>,
pub closed: bool,
pub constant_speed: bool,
}Fields§
§vertex_id: u32§name: String§vertices: MeshVertices§lengths: Vec<f32>§closed: bool§constant_speed: boolTrait Implementations§
Source§impl Clone for PathAttachmentData
impl Clone for PathAttachmentData
Source§fn clone(&self) -> PathAttachmentData
fn clone(&self) -> PathAttachmentData
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 moreAuto Trait Implementations§
impl Freeze for PathAttachmentData
impl RefUnwindSafe for PathAttachmentData
impl Send for PathAttachmentData
impl Sync for PathAttachmentData
impl Unpin for PathAttachmentData
impl UnwindSafe for PathAttachmentData
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