[−][src]Struct qt_core::AspectRatioMode
This enum type defines what happens to the aspect ratio when scaling an rectangle.
C++ enum: Qt::AspectRatioMode.
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]
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 Clone for AspectRatioMode[src]
fn clone(&self) -> AspectRatioMode[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Copy for AspectRatioMode[src]
impl Debug for AspectRatioMode[src]
impl Eq for AspectRatioMode[src]
impl From<AspectRatioMode> for c_int[src]
fn from(value: AspectRatioMode) -> Self[src]
impl From<i32> for AspectRatioMode[src]
impl PartialEq<AspectRatioMode> for AspectRatioMode[src]
fn eq(&self, other: &AspectRatioMode) -> bool[src]
fn ne(&self, other: &AspectRatioMode) -> bool[src]
impl StructuralEq for AspectRatioMode[src]
impl StructuralPartialEq for AspectRatioMode[src]
Auto Trait Implementations
impl RefUnwindSafe for AspectRatioMode
impl Send for AspectRatioMode
impl Sync for AspectRatioMode
impl Unpin for AspectRatioMode
impl UnwindSafe for AspectRatioMode
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T, U> CastInto<U> for T where
U: CastFrom<T>, [src]
U: CastFrom<T>,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> StaticUpcast<T> for T[src]
unsafe fn static_upcast(ptr: Ptr<T>) -> Ptr<T>[src]
unsafe fn static_upcast_mut(ptr: MutPtr<T>) -> MutPtr<T>[src]
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,