Enum miri::shims::native_lib::CArg
source · enum CArg {
Int8(i8),
Int16(i16),
Int32(i32),
Int64(i64),
ISize(isize),
UInt8(u8),
UInt16(u16),
UInt32(u32),
UInt64(u64),
USize(usize),
RawPtr(*mut c_void),
}
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.
RawPtr(*mut c_void)
Raw pointer, stored as C’s void*
.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CArg
impl RefUnwindSafe for CArg
impl !Send for CArg
impl !Sync for CArg
impl Unpin for CArg
impl UnwindSafe for CArg
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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 bytesRawPtr
: 15 bytes