Trait relm4::RelmRemoveExt

source ·
pub trait RelmRemoveExt: ContainerChild {
    // Required method
    fn container_remove(&self, child: &impl AsRef<Self::Child>);
}
Expand description

Widget types which can have widgets removed from them.

Required Methods§

source

fn container_remove(&self, child: &impl AsRef<Self::Child>)

Removes the widget from the container if it is a child of the container.

Implementations on Foreign Types§

source§

impl RelmRemoveExt for Grid

source§

fn container_remove(&self, widget: &impl AsRef<Self::Child>)

source§

impl RelmRemoveExt for ListBox

source§

fn container_remove(&self, widget: &impl AsRef<Self::Child>)

source§

impl RelmRemoveExt for InfoBar

source§

fn container_remove(&self, widget: &impl AsRef<Self::Child>)

source§

impl RelmRemoveExt for Fixed

source§

fn container_remove(&self, widget: &impl AsRef<Self::Child>)

source§

impl RelmRemoveExt for HeaderBar

source§

fn container_remove(&self, widget: &impl AsRef<Self::Child>)

source§

impl RelmRemoveExt for Box

source§

fn container_remove(&self, widget: &impl AsRef<Self::Child>)

source§

impl RelmRemoveExt for ActionBar

source§

fn container_remove(&self, widget: &impl AsRef<Self::Child>)

source§

impl RelmRemoveExt for PreferencesGroup

source§

fn container_remove(&self, widget: &impl AsRef<Self::Child>)

source§

impl RelmRemoveExt for Stack

source§

fn container_remove(&self, widget: &impl AsRef<Self::Child>)

source§

impl RelmRemoveExt for FlowBox

source§

fn container_remove(&self, widget: &impl AsRef<Self::Child>)

Implementors§