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