Skip to main content

ToUint32

Trait ToUint32 

Source
pub trait ToUint32: ToInt32 {
    // Provided method
    fn to_uint_32(&self) -> u32 { ... }
}

Provided Methods§

Source

fn to_uint_32(&self) -> u32

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<T> ToUint32 for T
where T: ToInt32,