pub struct FillBetween {
pub x: Vec<f64>,
pub y1: Vec<f64>,
pub y2: Vec<f64>,
pub opts: Vec<Opt>,
}
Expand description
A filled area between two horizontal curves.
ax.fill_between({x}, {y1}, {y2}, **{opts})
Prelude: No
JSON data: [list[float], list[float], list[float]]
Fields§
§x: Vec<f64>
X-coordinates.
y1: Vec<f64>
Y-coordinates of the first curve.
y2: Vec<f64>
Y-coordinates of the second curve.
opts: Vec<Opt>
Optional keyword arguments.
Implementations§
Source§impl FillBetween
impl FillBetween
Trait Implementations§
Source§impl Clone for FillBetween
impl Clone for FillBetween
Source§fn clone(&self) -> FillBetween
fn clone(&self) -> FillBetween
Returns a copy 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 FillBetween
impl Debug for FillBetween
Source§impl From<Errorbar> for FillBetween
Convert an Errorbar
to a FillBetween
, maintaining all options.
impl From<Errorbar> for FillBetween
Convert an Errorbar
to a FillBetween
, maintaining all options.
Source§impl From<Errorbar2> for FillBetween
Convert an Errorbar2
to a FillBetween
, maintaining all options.
impl From<Errorbar2> for FillBetween
Convert an Errorbar2
to a FillBetween
, maintaining all options.
Source§impl From<FillBetween> for Errorbar
Convert a FillBetween
to an Errorbar
, maintaining all options.
impl From<FillBetween> for Errorbar
Convert a FillBetween
to an Errorbar
, maintaining all options.
Source§fn from(fill_between: FillBetween) -> Self
fn from(fill_between: FillBetween) -> Self
Converts to this type from the input type.
Source§impl Matplotlib for FillBetween
impl Matplotlib for FillBetween
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 FillBetween
impl MatplotlibOpts for FillBetween
Source§impl PartialEq for FillBetween
impl PartialEq for FillBetween
impl StructuralPartialEq for FillBetween
Auto Trait Implementations§
impl Freeze for FillBetween
impl RefUnwindSafe for FillBetween
impl Send for FillBetween
impl Sync for FillBetween
impl Unpin for FillBetween
impl UnwindSafe for FillBetween
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