[][src]Struct firmament::Limits

pub struct Limits { /* fields omitted */ }

A set of size constraints for layouting.

Implementations

impl Limits[src]

pub const NONE: Self[src]

No limits

pub const fn new(min: Size, max: Size) -> Self[src]

Creates new Limits with the given minimum and maximum Size.

pub fn min(&self) -> Size[src]

Returns the minimum Size of the Limits.

pub fn max(&self) -> Size[src]

Returns the maximum Size of the Limits.

pub fn fill(&self) -> Size[src]

Returns the fill Size of the Limits.

pub fn width(self, width: Length) -> Self[src]

Applies a width constraint to the current Limits.

pub fn height(self, height: Length) -> Self[src]

Applies a height constraint to the current Limits.

pub fn min_width(self, min_width: u32) -> Self[src]

Applies a minimum width constraint to the current Limits.

pub fn max_width(self, max_width: u32) -> Self[src]

Applies a maximum width constraint to the current Limits.

pub fn min_height(self, min_height: u32) -> Self[src]

Applies a minimum height constraint to the current Limits.

pub fn max_height(self, max_height: u32) -> Self[src]

Applies a maximum height constraint to the current Limits.

pub fn pad(&self, padding: f32) -> Self[src]

Shrinks the current Limits to account for the given padding.

pub fn shrink(&self, size: Size) -> Self[src]

Shrinks the current Limits by the given Size.

pub fn loose(&self) -> Self[src]

Removes the minimum width constraint for the current Limits.

pub fn resolve(&self, intrinsic_size: Size) -> Size[src]

Computes the resulting Size that fits the Limits given the intrinsic size of some content.

Trait Implementations

impl Clone for Limits[src]

impl Copy for Limits[src]

impl Debug for Limits[src]

Auto Trait Implementations

impl RefUnwindSafe for Limits

impl Send for Limits

impl Sync for Limits

impl Unpin for Limits

impl UnwindSafe for Limits

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.