Enum miri::shims::ffi_support::CArg
source · pub enum CArg {
Int8(i8),
Int16(i16),
Int32(i32),
Int64(i64),
ISize(isize),
UInt8(u8),
UInt16(u16),
UInt32(u32),
UInt64(u64),
USize(usize),
}
Expand description
Enum of supported arguments to external C functions.
Variants§
Int8(i8)
8-bit signed integer.
Int16(i16)
16-bit signed integer.
Int32(i32)
32-bit signed integer.
Int64(i64)
64-bit signed integer.
ISize(isize)
isize.
UInt8(u8)
8-bit unsigned integer.
UInt16(u16)
16-bit unsigned integer.
UInt32(u32)
32-bit unsigned integer.
UInt64(u64)
64-bit unsigned integer.
USize(usize)
usize.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for CArg
impl Send for CArg
impl Sync for CArg
impl Unpin for CArg
impl UnwindSafe for CArg
Blanket Implementations§
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.
Size: 16 bytes
Size for each variant:
Int8
: 1 byteInt16
: 3 bytesInt32
: 7 bytesInt64
: 15 bytesISize
: 15 bytesUInt8
: 1 byteUInt16
: 3 bytesUInt32
: 7 bytesUInt64
: 15 bytesUSize
: 15 bytes