pub struct BufferOptions {
pub quadrant_segments: u32,
pub join_style: JoinStyle,
pub cap_style: CapStyle,
pub mitre_limit: f64,
pub simplify_factor: f64,
}Fields§
§quadrant_segments: u32§join_style: JoinStyle§cap_style: CapStyle§mitre_limit: f64§simplify_factor: f64Trait Implementations§
Source§impl Clone for BufferOptions
impl Clone for BufferOptions
Source§fn clone(&self) -> BufferOptions
fn clone(&self) -> BufferOptions
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 BufferOptions
Source§impl Debug for BufferOptions
impl Debug for BufferOptions
Source§impl Default for BufferOptions
impl Default for BufferOptions
Source§impl PartialEq for BufferOptions
impl PartialEq for BufferOptions
Source§fn eq(&self, other: &BufferOptions) -> bool
fn eq(&self, other: &BufferOptions) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BufferOptions
Auto Trait Implementations§
impl Freeze for BufferOptions
impl RefUnwindSafe for BufferOptions
impl Send for BufferOptions
impl Sync for BufferOptions
impl Unpin for BufferOptions
impl UnsafeUnpin for BufferOptions
impl UnwindSafe for BufferOptions
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