Trait winsafe::gui::Parent[][src]

pub trait Parent: Sealed {
    fn as_any(&self) -> &dyn Any;
}
Expand description

Trait to any window which can host child controls.

Note: This is a sealed trait which cannot be implemented outside the library.

Required methods

Returns a reference to the Any trait, allowing downcasting.

Implementors