pub type Rect = RectIsOwned<true>;
Expand description
Represents a rectangle with integer coordinates.
Rect
represents a C++wxRect
class instance which your code has ownership,RectIsOwned
<false>
represents one which don’t own.- Use
Rect
’snew()
orBuildable::builder()
(if available) to create an instance of this class. - See C++
wxRect
class’s documentation for more details.
Aliased Type§
pub struct Rect(/* private fields */);