[][src]Struct cursive::views::RadioButton

pub struct RadioButton<T> { /* fields omitted */ }

Variant of Checkbox arranged in group.

RadioButtons are managed by a RadioGroup. A single group can contain several radio buttons, but only one button per group can be active at a time.

RadioButtons are not created directly, but through RadioGroup::button().

Methods

impl<T: 'static> RadioButton<T>[src]

pub fn disable(&mut self)[src]

Disables this view.

A disabled view cannot be selected.

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

Disables this view.

Chainable variant.

pub fn enable(&mut self)[src]

Re-enables this view.

pub fn set_enabled(&mut self, enabled: bool)[src]

Enable or disable this view.

pub fn is_enabled(&self) -> bool[src]

Returns true if this view is enabled.

pub fn is_selected(&self) -> bool[src]

Returns true if this button is selected.

pub fn select(&mut self) -> EventResult[src]

Selects this button, un-selecting any other in the same group.

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

Selects this button, un-selecting any other in the same group.

Chainable variant.

Trait Implementations

impl<T: 'static> View for RadioButton<T>[src]

fn layout(&mut self, _: Vec2)[src]

Called once the size for this view has been decided. Read more

fn needs_relayout(&self) -> bool[src]

Should return true if the view content changed since the last call to layout(). Read more

fn call_on_any<'a>(&mut self, _: &Selector, _: AnyCb<'a>)[src]

Runs a closure on the view identified by the given selector. Read more

fn focus_view(&mut self, _: &Selector) -> Result<(), ()>[src]

Moves the focus to the view identified by the given selector. Read more

fn important_area(&self, view_size: Vec2) -> Rect[src]

What part of the view is important and should be visible? Read more

Auto Trait Implementations

impl<T> !Sync for RadioButton<T>

impl<T> !Send for RadioButton<T>

impl<T> Unpin for RadioButton<T>

impl<T> !RefUnwindSafe for RadioButton<T>

impl<T> !UnwindSafe for RadioButton<T>

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T[src]