pub type ClientData = ClientDataIsOwned<true>;Expand description
All classes deriving from wxEvtHandler (such as all controls and wxApp) can hold arbitrary data which is here referred to as “client data”.
ClientDatarepresents a C++wxClientDataclass instance which your code has ownership,ClientDataIsOwned<false>represents one which don’t own.- Use
ClientData’snew()to create an instance of this class. - See C++
wxClientDataclass’s documentation for more details.
Aliased Type§
pub struct ClientData(/* private fields */);