Trait tk::cmd::AddTkEntry

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

Provided Methods§

source

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

Object Safety§

This trait is not object safe.

Implementors§

source§

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