pub enum BufferPointStrategy {
Circle {
points_per_circle: usize,
},
Square,
}Expand description
Point-buffer policy.
Mirrors strategy::buffer::point_circle and point_square from
strategies/cartesian/buffer_point_circle.hpp:56-109 and
buffer_point_square.hpp:51-110.
Variants§
Trait Implementations§
Source§impl Clone for BufferPointStrategy
impl Clone for BufferPointStrategy
Source§fn clone(&self) -> BufferPointStrategy
fn clone(&self) -> BufferPointStrategy
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 moreimpl Copy for BufferPointStrategy
Source§impl Debug for BufferPointStrategy
impl Debug for BufferPointStrategy
impl Eq for BufferPointStrategy
Source§impl PartialEq for BufferPointStrategy
impl PartialEq for BufferPointStrategy
impl StructuralPartialEq for BufferPointStrategy
Auto Trait Implementations§
impl Freeze for BufferPointStrategy
impl RefUnwindSafe for BufferPointStrategy
impl Send for BufferPointStrategy
impl Sync for BufferPointStrategy
impl Unpin for BufferPointStrategy
impl UnsafeUnpin for BufferPointStrategy
impl UnwindSafe for BufferPointStrategy
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