pub trait AsContainer {
// Required method
fn as_container(&self) -> BorrowedContainer<'_>;
}Available on crate feature
winio only.Expand description
Trait to borrow the container handle.
Required Methods§
Sourcefn as_container(&self) -> BorrowedContainer<'_>
fn as_container(&self) -> BorrowedContainer<'_>
Get the container handle.
Implementations on Foreign Types§
Source§impl AsContainer for ScrollView
impl AsContainer for ScrollView
fn as_container(&self) -> BorrowedContainer<'_>
Source§impl AsContainer for TabViewItem
impl AsContainer for TabViewItem
fn as_container(&self) -> BorrowedContainer<'_>
Source§impl AsContainer for View
impl AsContainer for View
fn as_container(&self) -> BorrowedContainer<'_>
Source§impl AsContainer for Window
impl AsContainer for Window
fn as_container(&self) -> BorrowedContainer<'_>
Source§impl<T> AsContainer for &Twhere
T: AsContainer + ?Sized,
impl<T> AsContainer for &Twhere
T: AsContainer + ?Sized,
fn as_container(&self) -> BorrowedContainer<'_>
Implementors§
impl AsContainer for BorrowedContainer<'_>
impl AsContainer for everything_plugin::ui::winio::prelude::ScrollView
impl AsContainer for everything_plugin::ui::winio::prelude::TabViewItem
impl AsContainer for everything_plugin::ui::winio::prelude::View
impl AsContainer for everything_plugin::ui::winio::prelude::Window
impl<T> AsContainer for Child<T>where
T: AsContainer + Component,
Available on crate feature
handle only.