Trait tk::cmd::AddTkListbox

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

Provided Methods§

source

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

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<Widg, Inst: TkInstance> AddTkListbox for Widgwhere Widg: Deref<Target = Widget<Inst>>,