[][src]Struct native_windows_gui::RadioButtonBuilder

pub struct RadioButtonBuilder<'a> { /* fields omitted */ }

Implementations

impl<'a> RadioButtonBuilder<'a>[src]

pub fn flags(mut self: Self, flags: RadioButtonFlags) -> RadioButtonBuilder<'a>[src]

pub fn ex_flags(mut self: Self, flags: u32) -> RadioButtonBuilder<'a>[src]

pub fn text(mut self: Self, text: &'a str) -> RadioButtonBuilder<'a>[src]

pub fn size(mut self: Self, size: (i32, i32)) -> RadioButtonBuilder<'a>[src]

pub fn position(mut self: Self, pos: (i32, i32)) -> RadioButtonBuilder<'a>[src]

pub fn focus(mut self: Self, focus: bool) -> RadioButtonBuilder<'a>[src]

pub fn check_state(
    mut self: Self,
    check: RadioButtonState
) -> RadioButtonBuilder<'a>
[src]

pub fn background_color(
    mut self: Self,
    color: Option<[u8; 3]>
) -> RadioButtonBuilder<'a>
[src]

pub fn font(mut self: Self, font: Option<&'a Font>) -> RadioButtonBuilder<'a>[src]

pub fn parent<C: Into<ControlHandle>>(
    mut self: Self,
    p: C
) -> RadioButtonBuilder<'a>
[src]

pub fn build(self, out: &mut RadioButton) -> Result<(), NwgError>[src]

Auto Trait Implementations

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, 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.