[][src]Struct gdk_sys::GdkGeometry

#[repr(C)]pub struct GdkGeometry {
    pub min_width: c_int,
    pub min_height: c_int,
    pub max_width: c_int,
    pub max_height: c_int,
    pub base_width: c_int,
    pub base_height: c_int,
    pub width_inc: c_int,
    pub height_inc: c_int,
    pub min_aspect: c_double,
    pub max_aspect: c_double,
    pub win_gravity: GdkGravity,
}

Fields

min_width: c_intmin_height: c_intmax_width: c_intmax_height: c_intbase_width: c_intbase_height: c_intwidth_inc: c_intheight_inc: c_intmin_aspect: c_doublemax_aspect: c_doublewin_gravity: GdkGravity

Trait Implementations

impl Clone for GdkGeometry[src]

impl Copy for GdkGeometry[src]

impl Debug for GdkGeometry[src]

Auto Trait Implementations

impl RefUnwindSafe for GdkGeometry

impl Send for GdkGeometry

impl Sync for GdkGeometry

impl Unpin for GdkGeometry

impl UnwindSafe for GdkGeometry

Blanket Implementations

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

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

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

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.