pub struct TreeSkeleton {
pub segments: Vec<TreeSegment>,
pub tree_type: TreeType,
pub params: TreeParams,
}Expand description
Procedural tree skeleton generated by an L-system.
Fields§
§segments: Vec<TreeSegment>§tree_type: TreeType§params: TreeParamsImplementations§
Trait Implementations§
Source§impl Clone for TreeSkeleton
impl Clone for TreeSkeleton
Source§fn clone(&self) -> TreeSkeleton
fn clone(&self) -> TreeSkeleton
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 TreeSkeleton
impl RefUnwindSafe for TreeSkeleton
impl Send for TreeSkeleton
impl Sync for TreeSkeleton
impl Unpin for TreeSkeleton
impl UnsafeUnpin for TreeSkeleton
impl UnwindSafe for TreeSkeleton
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