pub struct EdgeRenderOptions {
pub enabled: bool,
pub color: [f32; 3],
pub line_width: f32,
}Expand description
Edge (line) overlay rendering options
Fields§
§enabled: bool§color: [f32; 3]§line_width: f32Trait Implementations§
Source§impl Clone for EdgeRenderOptions
impl Clone for EdgeRenderOptions
Source§fn clone(&self) -> EdgeRenderOptions
fn clone(&self) -> EdgeRenderOptions
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 EdgeRenderOptions
Source§impl Debug for EdgeRenderOptions
impl Debug for EdgeRenderOptions
Auto Trait Implementations§
impl Freeze for EdgeRenderOptions
impl RefUnwindSafe for EdgeRenderOptions
impl Send for EdgeRenderOptions
impl Sync for EdgeRenderOptions
impl Unpin for EdgeRenderOptions
impl UnsafeUnpin for EdgeRenderOptions
impl UnwindSafe for EdgeRenderOptions
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