Struct PointsMaterialOptions
pub struct PointsMaterialOptions {
pub size: f64,
pub opacity: f64,
pub transparent: bool,
pub depth_test: bool,
pub identifier: Option<String>,
}Expand description
Options for adding a points material.
Fields§
§size: f64The size of the points in pixels.
opacity: f64The opacity of the material.
transparent: boolThe transparent flag of the material.
depth_test: boolThe depth test flag of the material.
identifier: Option<String>The explicit identifier; assigned by the server when None.
Trait Implementations§
§impl Clone for PointsMaterialOptions
impl Clone for PointsMaterialOptions
§fn clone(&self) -> PointsMaterialOptions
fn clone(&self) -> PointsMaterialOptions
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 more§impl Debug for PointsMaterialOptions
impl Debug for PointsMaterialOptions
Auto Trait Implementations§
impl Freeze for PointsMaterialOptions
impl RefUnwindSafe for PointsMaterialOptions
impl Send for PointsMaterialOptions
impl Sync for PointsMaterialOptions
impl Unpin for PointsMaterialOptions
impl UnwindSafe for PointsMaterialOptions
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