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”.
ClientData
represents a C++wxClientData
class 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++
wxClientData
class’s documentation for more details.
Aliased Type§
pub struct ClientData(/* private fields */);