Trait ux::StackExt[][src]

pub trait StackExt: 'static {
    pub fn child_get_crop<P>(&self, child: &P) -> bool
    where
        P: Is<Actor>
;
pub fn child_get_fit<P>(&self, child: &P) -> bool
    where
        P: Is<Actor>
;
pub fn child_get_x_align<P>(&self, child: &P) -> Align
    where
        P: Is<Actor>
;
pub fn child_get_x_fill<P>(&self, child: &P) -> bool
    where
        P: Is<Actor>
;
pub fn child_get_y_align<P>(&self, child: &P) -> Align
    where
        P: Is<Actor>
;
pub fn child_get_y_fill<P>(&self, child: &P) -> bool
    where
        P: Is<Actor>
;
pub fn child_set_crop<P>(&self, child: &P, crop: bool)
    where
        P: Is<Actor>
;
pub fn child_set_fit<P>(&self, child: &P, fit: bool)
    where
        P: Is<Actor>
;
pub fn child_set_x_align<P>(&self, child: &P, x_align: Align)
    where
        P: Is<Actor>
;
pub fn child_set_x_fill<P>(&self, child: &P, x_fill: bool)
    where
        P: Is<Actor>
;
pub fn child_set_y_align<P>(&self, child: &P, y_align: Align)
    where
        P: Is<Actor>
;
pub fn child_set_y_fill<P>(&self, child: &P, y_fill: bool)
    where
        P: Is<Actor>
; }

Required methods

pub fn child_get_crop<P>(&self, child: &P) -> bool where
    P: Is<Actor>, 
[src]

pub fn child_get_fit<P>(&self, child: &P) -> bool where
    P: Is<Actor>, 
[src]

pub fn child_get_x_align<P>(&self, child: &P) -> Align where
    P: Is<Actor>, 
[src]

pub fn child_get_x_fill<P>(&self, child: &P) -> bool where
    P: Is<Actor>, 
[src]

pub fn child_get_y_align<P>(&self, child: &P) -> Align where
    P: Is<Actor>, 
[src]

pub fn child_get_y_fill<P>(&self, child: &P) -> bool where
    P: Is<Actor>, 
[src]

pub fn child_set_crop<P>(&self, child: &P, crop: bool) where
    P: Is<Actor>, 
[src]

pub fn child_set_fit<P>(&self, child: &P, fit: bool) where
    P: Is<Actor>, 
[src]

pub fn child_set_x_align<P>(&self, child: &P, x_align: Align) where
    P: Is<Actor>, 
[src]

pub fn child_set_x_fill<P>(&self, child: &P, x_fill: bool) where
    P: Is<Actor>, 
[src]

pub fn child_set_y_align<P>(&self, child: &P, y_align: Align) where
    P: Is<Actor>, 
[src]

pub fn child_set_y_fill<P>(&self, child: &P, y_fill: bool) where
    P: Is<Actor>, 
[src]

Loading content...

Implementors

impl<O> StackExt for O where
    O: Is<Stack>, 
[src]

Loading content...