Trait components::StackExt [−][src]
pub trait StackExt: 'static {
fn child_get_crop<P: Is<Actor>>(&self, child: &P) -> bool;
fn child_get_fit<P: Is<Actor>>(&self, child: &P) -> bool;
fn child_get_x_align<P: Is<Actor>>(&self, child: &P) -> Align;
fn child_get_x_fill<P: Is<Actor>>(&self, child: &P) -> bool;
fn child_get_y_align<P: Is<Actor>>(&self, child: &P) -> Align;
fn child_get_y_fill<P: Is<Actor>>(&self, child: &P) -> bool;
fn child_set_crop<P: Is<Actor>>(&self, child: &P, crop: bool);
fn child_set_fit<P: Is<Actor>>(&self, child: &P, fit: bool);
fn child_set_x_align<P: Is<Actor>>(&self, child: &P, x_align: Align);
fn child_set_x_fill<P: Is<Actor>>(&self, child: &P, x_fill: bool);
fn child_set_y_align<P: Is<Actor>>(&self, child: &P, y_align: Align);
fn child_set_y_fill<P: Is<Actor>>(&self, child: &P, y_fill: bool);
}Required methods
fn child_get_crop<P: Is<Actor>>(&self, child: &P) -> bool[src]
fn child_get_fit<P: Is<Actor>>(&self, child: &P) -> bool[src]
fn child_get_x_align<P: Is<Actor>>(&self, child: &P) -> Align[src]
fn child_get_x_fill<P: Is<Actor>>(&self, child: &P) -> bool[src]
fn child_get_y_align<P: Is<Actor>>(&self, child: &P) -> Align[src]
fn child_get_y_fill<P: Is<Actor>>(&self, child: &P) -> bool[src]
fn child_set_crop<P: Is<Actor>>(&self, child: &P, crop: bool)[src]
fn child_set_fit<P: Is<Actor>>(&self, child: &P, fit: bool)[src]
fn child_set_x_align<P: Is<Actor>>(&self, child: &P, x_align: Align)[src]
fn child_set_x_fill<P: Is<Actor>>(&self, child: &P, x_fill: bool)[src]
fn child_set_y_align<P: Is<Actor>>(&self, child: &P, y_align: Align)[src]
fn child_set_y_fill<P: Is<Actor>>(&self, child: &P, y_fill: bool)[src]
Implementors
impl<O: Is<Stack>> StackExt for O[src]
impl<O: Is<Stack>> StackExt for O[src]