pub struct AxHLine {
pub y: f64,
pub opts: Vec<Opt>,
}Expand description
A horizontal line.
ax.axhline({y}, **{opts})Prelude: No
JSON data: None
Fields§
§y: f64Y-coordinate of the line.
opts: Vec<Opt>Optional keyword arguments.
Implementations§
Trait Implementations§
Source§impl Matplotlib for AxHLine
impl Matplotlib for AxHLine
Source§fn is_prelude(&self) -> bool
fn is_prelude(&self) -> bool
Return
true if self should be considered as a prelude item, which
are executed in the order seen after imports but before plot
initialization.Source§impl MatplotlibOpts for AxHLine
impl MatplotlibOpts for AxHLine
impl StructuralPartialEq for AxHLine
Auto Trait Implementations§
impl Freeze for AxHLine
impl RefUnwindSafe for AxHLine
impl Send for AxHLine
impl Sync for AxHLine
impl Unpin for AxHLine
impl UnsafeUnpin for AxHLine
impl UnwindSafe for AxHLine
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