[][src]Trait r0::Word

pub unsafe trait Word: Sealed + Copy { }

Trait for machine word types.

This trait is implemented by unsigned integers representing common machine word sizes. It can not be implemented by the user.

Types implementing this trait can be used by the init_data and zero_bss functions. For that to be sound, all bit patterns need to be valid for the type, the type must implement Copy, and the type must not be zero-sized.

Implementors

impl Word for u8[src]

impl Word for u16[src]

impl Word for u32[src]

impl Word for u64[src]

impl Word for u128[src]

Loading content...