[][src]Struct mandelbrot::views::mandelbrot_and_julia::double::DoubleViewManager

pub struct DoubleViewManager {
    left: MandelbrotDoubleView,
    right: JuliaDoubleView,
    window_size: WindowSize,
    cursor_pos: Position,
    prev_cursor_pos: Position,
    ever_had_pos: bool,
}

Fields

left: MandelbrotDoubleViewright: JuliaDoubleViewwindow_size: WindowSizecursor_pos: Positionprev_cursor_pos: Positionever_had_pos: bool

Trait Implementations

impl FractalViewManager for DoubleViewManager[src]

Auto Trait Implementations

impl Send for DoubleViewManager

impl Sync for DoubleViewManager

impl Unpin for DoubleViewManager

impl UnwindSafe for DoubleViewManager

impl !RefUnwindSafe for DoubleViewManager

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,