Struct titik::GroupBox[][src]

pub struct GroupBox<MSG> { /* fields omitted */ }

Group elements together Radio buttons in the same group will have an exclusive behavior

Implementations

impl<MSG> GroupBox<MSG>[src]

pub fn new() -> Self[src]

create a new groupbox

pub fn clear_children(&mut self)[src]

remove all children of this flex_box

pub fn vertical(&mut self)[src]

set to vertical column direction

pub fn horizontal(&mut self)[src]

set to horizontal row direction

pub fn set_label(&mut self, label: &str)[src]

set the label of the group box

Trait Implementations

impl<MSG: Debug> Debug for GroupBox<MSG>[src]

impl<MSG: Default> Default for GroupBox<MSG>[src]

impl<MSG> Widget<MSG> for GroupBox<MSG> where
    MSG: Debug + 'static, 
[src]

Auto Trait Implementations

impl<MSG> !RefUnwindSafe for GroupBox<MSG>

impl<MSG> !Send for GroupBox<MSG>

impl<MSG> !Sync for GroupBox<MSG>

impl<MSG> Unpin for GroupBox<MSG>

impl<MSG> !UnwindSafe for GroupBox<MSG>

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

type Init = T

The type for initializers.

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.