pub struct View3DConfig {
pub rot_x: Option<i32>,
pub rot_y: Option<i32>,
pub depth_percent: Option<u32>,
pub right_angle_axes: Option<bool>,
pub perspective: Option<u32>,
}Expand description
3D view configuration for charts.
Fields§
§rot_x: Option<i32>X-axis rotation angle in degrees.
rot_y: Option<i32>Y-axis rotation angle in degrees.
depth_percent: Option<u32>Depth as a percentage (100 = normal depth).
right_angle_axes: Option<bool>Whether to use right angle axes.
perspective: Option<u32>Perspective angle in degrees.
Trait Implementations§
Source§impl Clone for View3DConfig
impl Clone for View3DConfig
Source§fn clone(&self) -> View3DConfig
fn clone(&self) -> View3DConfig
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 View3DConfig
impl Debug for View3DConfig
Source§impl Default for View3DConfig
impl Default for View3DConfig
Source§fn default() -> View3DConfig
fn default() -> View3DConfig
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for View3DConfig
impl RefUnwindSafe for View3DConfig
impl Send for View3DConfig
impl Sync for View3DConfig
impl Unpin for View3DConfig
impl UnwindSafe for View3DConfig
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