pub trait IntoUsize: Copy {
    // Required method
    fn into_usize(self) -> usize;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl IntoUsize for u16

source§

impl IntoUsize for u32

Implementors§