[][src]Struct coffee::ui::core::Style

pub struct Style(_);

The appearance of a Node.

Methods

impl Style[src]

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

Defines the width of a Node in pixels.

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

Defines the height of a Node in pixels.

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

Defines the minimum width of a Node in pixels.

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

Defines the maximum width of a Node in pixels.

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

Defines the minimum height of a Node in pixels.

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

Defines the maximum height of a Node in pixels.

pub fn fill_width(self) -> Self[src]

Makes a Node fill all the horizontal available space.

pub fn fill_height(self) -> Self[src]

Makes a Node fill all the vertical available space.

pub fn align_self(self, align: Align) -> Self[src]

Sets the alignment of a Node.

If the Node is inside a...

  • Column, this setting will affect its horizontal alignment.
  • Row, this setting will affect its vertical alignment.

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

Sets the padding of a Node in pixels.

Trait Implementations

impl Clone for Style[src]

impl Copy for Style[src]

impl Debug for Style[src]

impl Default for Style[src]

impl Hash for Style[src]

Auto Trait Implementations

impl RefUnwindSafe for Style

impl Send for Style

impl Sync for Style

impl Unpin for Style

impl UnwindSafe for Style

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> Same<T> for T

type Output = T

Should always be Self

impl<T> SetParameter for T

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

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<V, T> VZip<V> for T where
    V: MultiLane<T>,