Trait tk::cmd::AddTkLabelframe

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

Provided Methods§

source

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

Object Safety§

This trait is not object safe.

Implementors§

source§

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