pub struct AxLineM {
pub xy: (f64, f64),
pub m: f64,
pub opts: Vec<Opt>,
}
Expand description
A line passing through one point with a slope.
ax.axline({xy}, xy2=None, slope={m}, **{opts})
Fields§
§xy: (f64, f64)
(x, y) point.
m: f64
Slope.
opts: Vec<Opt>
Optional keyword arguments.
Implementations§
Trait Implementations§
Source§impl Matplotlib for AxLineM
impl Matplotlib for AxLineM
Source§fn is_prelude(&self) -> bool
fn is_prelude(&self) -> bool
Return
true
if self
should be considered as a prelude item, which
are execute in the order seen but before any non-prelude items.Source§impl MatplotlibOpts for AxLineM
impl MatplotlibOpts for AxLineM
impl StructuralPartialEq for AxLineM
Auto Trait Implementations§
impl Freeze for AxLineM
impl RefUnwindSafe for AxLineM
impl Send for AxLineM
impl Sync for AxLineM
impl Unpin for AxLineM
impl UnwindSafe for AxLineM
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