pub trait TextureClient:
Sized
+ Debug
+ Default
+ Clone { }
Expand description
The trait that must be supported by a client texture
Default is required as the client is made when a texture is made Clone is required as the client is textures are cloned
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.