pub trait AsKPrintUnsignedInt {
// Required method
fn as_c_ulonglong(&self) -> c_ulonglong;
}Expand description
Trait implemented by unsigned integer types formatted with %llu, %llx, %llo.
Required Methods§
fn as_c_ulonglong(&self) -> c_ulonglong
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".