Trait tk::cmd::TkTextFn

source ·
pub trait TkTextFn {
    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> TkTextFn for PathOptsWidgets<Opts, Widgs>where Widgs: ConvertTuple, Opts: IntoHomoTuple<TkTextOpt> + IntoHomoTuple<OptPair>, <Widgs as ConvertTuple>::Output: PushFront<Node<(&'static str, &'static str), <Opts as IntoHomoTuple<OptPair>>::Output>>,

§

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

source§

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