Trait tk::cmd::TkButtonFn

source ·
pub trait TkButtonFn {
    type Output;

    // Required method
    fn output(self) -> Self::Output;
}

Required Associated Types§

Required Methods§

source

fn output(self) -> Self::Output

Implementors§

source§

impl<Opts, Widgs> TkButtonFn for PathOptsWidgets<Opts, Widgs>where Widgs: ConvertTuple, Opts: IntoHomoTuple<TkButtonOpt> + IntoHomoTuple<OptPair>, <Widgs as ConvertTuple>::Output: PushFront<Node<(&'static str, &'static str), <Opts as IntoHomoTuple<OptPair>>::Output>>,

§

type Output = TkButtonTup<<<Widgs as ConvertTuple>::Output as PushFront<Node<(&'static str, &'static str), <Opts as IntoHomoTuple<OptPair>>::Output>>>::Output>

source§

impl<T: Into<Obj>> TkButtonFn for T