#[repr(C)]
pub enum WindowPropertyFlags {
    WND_PROP_FULLSCREEN,
    WND_PROP_AUTOSIZE,
    WND_PROP_ASPECT_RATIO,
    WND_PROP_OPENGL,
    WND_PROP_VISIBLE,
    WND_PROP_TOPMOST,
    WND_PROP_VSYNC,
}
Expand description

Flags for cv::setWindowProperty / cv::getWindowProperty

Variants

WND_PROP_FULLSCREEN

fullscreen property (can be WINDOW_NORMAL or WINDOW_FULLSCREEN).

WND_PROP_AUTOSIZE

autosize property (can be WINDOW_NORMAL or WINDOW_AUTOSIZE).

WND_PROP_ASPECT_RATIO

window’s aspect ration (can be set to WINDOW_FREERATIO or WINDOW_KEEPRATIO).

WND_PROP_OPENGL

opengl support.

WND_PROP_VISIBLE

checks whether the window exists and is visible

WND_PROP_TOPMOST

property to toggle normal window being topmost or not

WND_PROP_VSYNC

enable or disable VSYNC (in OpenGL mode)

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. 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 resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
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.