pub struct PolarGridOpts {
pub r_ticks: Option<Vec<f64>>,
pub theta_step_deg: i32,
pub stroke: Stroke,
pub stroke_width: f64,
pub samples: usize,
pub labels: bool,
pub r_labels: bool,
}Expand description
Options for Figure::polar_grid.
Fields§
§r_ticks: Option<Vec<f64>>§theta_step_deg: i32§stroke: Stroke§stroke_width: f64§samples: usize§labels: bool§r_labels: boolTrait Implementations§
Source§impl Clone for PolarGridOpts
impl Clone for PolarGridOpts
Source§fn clone(&self) -> PolarGridOpts
fn clone(&self) -> PolarGridOpts
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 PolarGridOpts
impl Debug for PolarGridOpts
Auto Trait Implementations§
impl Freeze for PolarGridOpts
impl RefUnwindSafe for PolarGridOpts
impl Send for PolarGridOpts
impl Sync for PolarGridOpts
impl Unpin for PolarGridOpts
impl UnsafeUnpin for PolarGridOpts
impl UnwindSafe for PolarGridOpts
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