Trait ArchInto

Source
pub trait ArchInto<T>: Sized {
    // Required method
    fn arch_into(self) -> T;
}

Required Methods§

Source

fn arch_into(self) -> T

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.

Implementations on Foreign Types§

Source§

impl ArchInto<i64> for isize

Source§

impl ArchInto<i128> for isize

Source§

impl ArchInto<isize> for i8

Source§

impl ArchInto<isize> for i16

Source§

impl ArchInto<isize> for i32

Source§

impl ArchInto<u64> for usize

Source§

impl ArchInto<u128> for usize

Source§

impl ArchInto<usize> for u8

Source§

impl ArchInto<usize> for u16

Source§

impl ArchInto<usize> for u32

Implementors§