Trait tk::cmd::AddTtkCheckbutton

source ·
pub trait AddTtkCheckbutton {
    // Provided method
    fn add_ttk_checkbutton<Opts, Inst: TkInstance>(
        &self,
        path_opts: impl Into<PathOptsWidgets<Opts, ()>>
    ) -> InterpResult<TtkCheckbutton<Inst>>
       where Self: Deref<Target = Widget<Inst>>,
             Opts: IntoHomoTuple<TtkCheckbuttonOpt> + IntoHomoTuple<OptPair> { ... }
}

Provided Methods§

source

fn add_ttk_checkbutton<Opts, Inst: TkInstance>( &self, path_opts: impl Into<PathOptsWidgets<Opts, ()>> ) -> InterpResult<TtkCheckbutton<Inst>>
where Self: Deref<Target = Widget<Inst>>, Opts: IntoHomoTuple<TtkCheckbuttonOpt> + IntoHomoTuple<OptPair>,

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<Widg, Inst: TkInstance> AddTtkCheckbutton for Widg
where Widg: Deref<Target = Widget<Inst>>,