[][src]Struct orbtk::prelude::api::Row

pub struct Row {
    pub height: RowHeight,
    pub min_height: f64,
    pub max_height: f64,
    // some fields omitted
}

Used to define the row of the Grid.

Fields

height: RowHeightmin_height: f64max_height: f64

Methods

impl Row[src]

pub fn create() -> RowBuilder[src]

Creates a new RowBuilder object with default values.

pub fn height(&self) -> RowHeight[src]

Gets the row height.

pub fn current_height(&self) -> f64[src]

Gets the current height.

pub fn set_current_height(&mut self, height: f64)[src]

Sets the current height.

Trait Implementations

impl Default for Row[src]

impl From<f64> for Row[src]

impl<'_> From<&'_ str> for Row[src]

impl StructuralPartialEq for Row[src]

impl Clone for Row[src]

impl Debug for Row[src]

impl Copy for Row[src]

impl PartialEq<Row> for Row[src]

Auto Trait Implementations

impl Send for Row

impl Sync for Row

impl Unpin for Row

impl UnwindSafe for Row

impl RefUnwindSafe for Row

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<E> Component for E where
    E: Any
[src]

impl<T> SetParameter for T