pub struct MultiGraph<X: AsF64, Y: AsF64, F: Fn(X) -> Y> { /* private fields */ }Implementations§
Source§impl<X: AsF64, Y: AsF64, F: Fn(X) -> Y> MultiGraph<X, Y, F>
impl<X: AsF64, Y: AsF64, F: Fn(X) -> Y> MultiGraph<X, Y, F>
pub fn new( f: Vec<Function<X, Y, F>>, width: u32, set_height: Option<u32>, ) -> MultiGraph<X, Y, F>
pub fn new_screen(f: Vec<Function<X, Y, F>>) -> MultiGraph<X, Y, F>
pub fn with_options( fs: Vec<Function<X, Y, F>>, width: u32, set_height: Option<u32>, options: MultiGraphOptions, ) -> MultiGraph<X, Y, F>
pub fn with_options_screen( f: Vec<Function<X, Y, F>>, options: MultiGraphOptions, ) -> MultiGraph<X, Y, F>
pub fn draw(&self)
Trait Implementations§
Auto Trait Implementations§
impl<X, Y, F> Freeze for MultiGraph<X, Y, F>
impl<X, Y, F> RefUnwindSafe for MultiGraph<X, Y, F>
impl<X, Y, F> Send for MultiGraph<X, Y, F>
impl<X, Y, F> Sync for MultiGraph<X, Y, F>
impl<X, Y, F> Unpin for MultiGraph<X, Y, F>
impl<X, Y, F> UnwindSafe for MultiGraph<X, Y, F>
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