pub trait XidNew: Xid {
// Required method
unsafe fn new(res_id: u32) -> Self;
}Expand description
Trait for X resources that can be created directly from Connection::generate_id
The resources that cannot be created that way are the Xid unions, which are created from their underlying resource.
Required Methods§
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.