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