Trait rust_cheri_compressed_cap::FfiNumType[][src]

pub trait FfiNumType<T>: Default + Copy + Clone + Debug + Into<T> + From<T> { }

Value which can be converted to T (a NumType). Must also be Default/Copy/Clone/Debug, so CcxCap can derive these.

Implementations on Foreign Types

impl FfiNumType<u64> for u64[src]

impl FfiNumType<i64> for i64[src]

impl FfiNumType<u128> for u128[src]

We assume the C representation of u128 is identical to the Rust representation. See crate::c_funcs documentation.

impl FfiNumType<i128> for i128[src]

We assume the C representation of i128 is identical to the Rust representation. See crate::c_funcs documentation.

Loading content...

Implementors

Loading content...