[][src]Struct qt_core::AspectRatioMode

#[repr(transparent)]
pub struct AspectRatioMode(_);

This enum type defines what happens to the aspect ratio when scaling an rectangle.

C++ enum: Qt::AspectRatioMode.

C++ documentation:

This enum type defines what happens to the aspect ratio when scaling an rectangle.

See also QSize::scale() and QImage::scaled().

Methods

impl AspectRatioMode[src]

pub fn to_int(&self) -> c_int[src]

impl AspectRatioMode[src]

pub const IgnoreAspectRatio: AspectRatioMode[src]

The size is scaled freely. The aspect ratio is not preserved. (C++ enum variant: IgnoreAspectRatio = 0)

pub const KeepAspectRatio: AspectRatioMode[src]

The size is scaled to a rectangle as large as possible inside a given rectangle, preserving the aspect ratio. (C++ enum variant: KeepAspectRatio = 1)

pub const KeepAspectRatioByExpanding: AspectRatioMode[src]

The size is scaled to a rectangle as small as possible outside a given rectangle, preserving the aspect ratio. (C++ enum variant: KeepAspectRatioByExpanding = 2)

Trait Implementations

impl From<i32> for AspectRatioMode[src]

impl From<AspectRatioMode> for c_int[src]

impl Clone for AspectRatioMode[src]

impl Copy for AspectRatioMode[src]

impl Eq for AspectRatioMode[src]

impl PartialEq<AspectRatioMode> for AspectRatioMode[src]

impl Debug for AspectRatioMode[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for 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.

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<T> StaticUpcast<T> for T[src]

impl<T, U> CastInto<U> for T where
    U: CastFrom<T>, 
[src]