#[non_exhaustive]pub enum ContentFit {
Fill,
Contain,
Cover,
ScaleDown,
}
v4_8
only.Expand description
Controls how a content should be made to fit inside an allocation.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Fill
Make the content fill the entire allocation, without taking its aspect ratio in consideration. The resulting content will appear as stretched if its aspect ratio is different from the allocation aspect ratio.
Contain
Scale the content to fit the allocation, while taking its aspect ratio in consideration. The resulting content will appear as letterboxed if its aspect ratio is different from the allocation aspect ratio.
Cover
Cover the entire allocation, while taking the content aspect ratio in consideration. The resulting content will appear as clipped if its aspect ratio is different from the allocation aspect ratio.
ScaleDown
The content is scaled down to fit the allocation, if needed, otherwise its original size is used.
Trait Implementations§
Source§impl Clone for ContentFit
impl Clone for ContentFit
Source§fn clone(&self) -> ContentFit
fn clone(&self) -> ContentFit
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for ContentFit
impl Debug for ContentFit
Source§impl From<ContentFit> for Value
impl From<ContentFit> for Value
Source§fn from(v: ContentFit) -> Self
fn from(v: ContentFit) -> Self
Source§impl<'a> FromValue<'a> for ContentFit
impl<'a> FromValue<'a> for ContentFit
Source§type Checker = GenericValueTypeChecker<ContentFit>
type Checker = GenericValueTypeChecker<ContentFit>
Source§unsafe fn from_value(value: &'a Value) -> Self
unsafe fn from_value(value: &'a Value) -> Self
Value
. Read moreSource§impl HasParamSpec for ContentFit
impl HasParamSpec for ContentFit
type ParamSpec = ParamSpecEnum
Source§type SetValue = ContentFit
type SetValue = ContentFit
type BuilderFn = fn(_: &str, _: ContentFit) -> ParamSpecEnumBuilder<'_, ContentFit>
fn param_spec_builder() -> Self::BuilderFn
Source§impl Hash for ContentFit
impl Hash for ContentFit
Source§impl Ord for ContentFit
impl Ord for ContentFit
Source§fn cmp(&self, other: &ContentFit) -> Ordering
fn cmp(&self, other: &ContentFit) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Source§impl PartialEq for ContentFit
impl PartialEq for ContentFit
Source§impl PartialOrd for ContentFit
impl PartialOrd for ContentFit
Source§impl StaticType for ContentFit
impl StaticType for ContentFit
Source§fn static_type() -> Type
fn static_type() -> Type
Self
.Source§impl ToValue for ContentFit
impl ToValue for ContentFit
Source§impl ValueType for ContentFit
impl ValueType for ContentFit
Source§type Type = ContentFit
type Type = ContentFit
Type
from. Read moreimpl Copy for ContentFit
impl Eq for ContentFit
impl StructuralPartialEq for ContentFit
Auto Trait Implementations§
impl Freeze for ContentFit
impl RefUnwindSafe for ContentFit
impl Send for ContentFit
impl Sync for ContentFit
impl Unpin for ContentFit
impl UnwindSafe for ContentFit
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)Source§impl<T> IntoClosureReturnValue for T
impl<T> IntoClosureReturnValue for T
fn into_closure_return_value(self) -> Option<Value>
Source§impl<T> PropertyGet for Twhere
T: HasParamSpec,
impl<T> PropertyGet for Twhere
T: HasParamSpec,
Source§impl<T> StaticTypeExt for Twhere
T: StaticType,
impl<T> StaticTypeExt for Twhere
T: StaticType,
Source§fn ensure_type()
fn ensure_type()
Source§impl<T> ToSendValue for T
impl<T> ToSendValue for T
Source§fn to_send_value(&self) -> SendValue
fn to_send_value(&self) -> SendValue
SendValue
clone of self
.