#[repr(C)]struct VaListInner {
gp_offset: i32,
fp_offset: i32,
overflow_arg_area: *const c_void,
reg_save_area: *const c_void,
}🔬This is a nightly-only experimental API. (
c_variadic #44930)Expand description
x86_64 System V ABI implementation of a va_list.
See the System V AMD64 ABI for more details.
va_copy is memcpy: https://github.com/llvm/llvm-project/blob/5aee01a3df011e660f26660bc30a8c94a1651d8e/llvm/lib/Target/X86/X86ISelLowering.cpp#26319
(github won’t render that file, look for SDValue LowerVACOPY)
Fields§
§gp_offset: i32🔬This is a nightly-only experimental API. (
§c_variadic #44930)fp_offset: i32🔬This is a nightly-only experimental API. (
§c_variadic #44930)overflow_arg_area: *const c_void🔬This is a nightly-only experimental API. (
§c_variadic #44930)reg_save_area: *const c_void🔬This is a nightly-only experimental API. (
c_variadic #44930)Trait Implementations§
Source§impl Clone for VaListInner
impl Clone for VaListInner
Source§fn clone(&self) -> VaListInner
fn clone(&self) -> VaListInner
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)where
Self:,
fn clone_from(&mut self, source: &Self)where
Self:,
Performs copy-assignment from
source. Read moreSource§impl Debug for VaListInner
impl Debug for VaListInner
impl Copy for VaListInner
impl TrivialClone for VaListInner
Auto Trait Implementations§
impl Freeze for VaListInner
impl RefUnwindSafe for VaListInner
impl !Send for VaListInner
impl !Sync for VaListInner
impl Unpin for VaListInner
impl UnsafeUnpin for VaListInner
impl UnwindSafe for VaListInner
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§impl<T> SizedTypeProperties for T
impl<T> SizedTypeProperties for T
Source§#[doc(hidden)]const SIZE: usize = _
#[doc(hidden)]const SIZE: usize = _
🔬This is a nightly-only experimental API. (
sized_type_properties)Source§#[doc(hidden)]const ALIGN: usize = _
#[doc(hidden)]const ALIGN: usize = _
🔬This is a nightly-only experimental API. (
sized_type_properties)Source§#[doc(hidden)]const ALIGNMENT: Alignment = _
#[doc(hidden)]const ALIGNMENT: Alignment = _
🔬This is a nightly-only experimental API. (
ptr_alignment_type #102070)Source§#[doc(hidden)]const IS_ZST: bool = _
#[doc(hidden)]const IS_ZST: bool = _
🔬This is a nightly-only experimental API. (
sized_type_properties)Source§#[doc(hidden)]const LAYOUT: Layout = _
#[doc(hidden)]const LAYOUT: Layout = _
🔬This is a nightly-only experimental API. (
sized_type_properties)Source§#[doc(hidden)]const MAX_SLICE_LEN: usize = _
#[doc(hidden)]const MAX_SLICE_LEN: usize = _
🔬This is a nightly-only experimental API. (
sized_type_properties)The largest safe length for a
[Self]. Read more