#[repr(C)]pub struct axis_t {Show 14 fields
pub min: f64,
pub max: f64,
pub tick: f64,
pub org: f64,
pub position: f64,
pub major_count: c_int,
pub num_ticks: c_int,
pub ticks: *mut tick_t,
pub tick_size: f64,
pub num_tick_labels: c_int,
pub tick_labels: *mut tick_label_t,
pub label_position: f64,
pub draw_axis_line: c_int,
pub label_orientation: c_int,
}Fields§
§min: f64§max: f64§tick: f64§org: f64§position: f64§major_count: c_int§num_ticks: c_int§ticks: *mut tick_t§tick_size: f64§num_tick_labels: c_int§tick_labels: *mut tick_label_t§label_position: f64§draw_axis_line: c_int§label_orientation: c_intTrait Implementations§
Auto Trait Implementations§
impl Freeze for axis_t
impl RefUnwindSafe for axis_t
impl !Send for axis_t
impl !Sync for axis_t
impl Unpin for axis_t
impl UnwindSafe for axis_t
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