pub struct Plotters {
    pub handle: ControlHandle,
    /* private fields */
}
Expand description

A canvas-like control that act as a backend for the plotters library. The plotters control use direct2D to render to the canvas.

Fields

handle: ControlHandle

Implementations

Prepare the plotters canvas for drawing. Returns an object that can be DrawingArea. This method may fail if an internal error occured during the last draw call

Return true if the control currently has the keyboard focus

Set the keyboard focus on the button

Return true if the control user can interact with the control, return false otherwise

Enable or disable the control

Return true if the control is visible to the user. Will return true even if the control is outside of the parent client view (ex: at the position (10000, 10000))

Show or hide the control to the user

Return the size of the button in the parent window

Return the physical size of canvas in pixels considering the dpi scale

Set the size of the button in the parent window

Return the position of the button in the parent window

Set the position of the button in the parent window

Winapi class name used during control creation

Winapi flags required by the control

Trait Implementations

Returns the “default value” for a type. Read more

Converts to this type from the input type.

Converts to this type from the input type.

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.