pub enum Viewer3DGrid {
Uniform(bool),
PerPlane(Viewer3DGridPlanes),
}Variants§
Uniform(bool)
All planes share the same visibility flag
PerPlane(Viewer3DGridPlanes)
Per-plane visibility control
Trait Implementations§
Source§impl Clone for Viewer3DGrid
impl Clone for Viewer3DGrid
Source§fn clone(&self) -> Viewer3DGrid
fn clone(&self) -> Viewer3DGrid
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 moreSource§impl Debug for Viewer3DGrid
impl Debug for Viewer3DGrid
Source§impl<'de> Deserialize<'de> for Viewer3DGrid
impl<'de> Deserialize<'de> for Viewer3DGrid
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for Viewer3DGrid
impl PartialEq for Viewer3DGrid
Source§impl Serialize for Viewer3DGrid
impl Serialize for Viewer3DGrid
impl StructuralPartialEq for Viewer3DGrid
Auto Trait Implementations§
impl Freeze for Viewer3DGrid
impl RefUnwindSafe for Viewer3DGrid
impl Send for Viewer3DGrid
impl Sync for Viewer3DGrid
impl Unpin for Viewer3DGrid
impl UnsafeUnpin for Viewer3DGrid
impl UnwindSafe for Viewer3DGrid
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