Trait tk::cmd::AddTkSpinbox

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

Provided Methods§

source

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

Object Safety§

This trait is not object safe.

Implementors§

source§

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