#[repr(C)]pub struct VaListImpl<'f> {
gp_offset: i32,
fp_offset: i32,
overflow_arg_area: *mut c_void,
reg_save_area: *mut c_void,
_marker: PhantomData<&'f mut &'f c_void>,
}
🔬 This is a nightly-only experimental API. (
c_variadic
)Expand description
x86_64 ABI implementation of a va_list
.
Fields
gp_offset: i32
🔬 This is a nightly-only experimental API. (
c_variadic
)fp_offset: i32
🔬 This is a nightly-only experimental API. (
c_variadic
)overflow_arg_area: *mut c_void
🔬 This is a nightly-only experimental API. (
c_variadic
)reg_save_area: *mut c_void
🔬 This is a nightly-only experimental API. (
c_variadic
)_marker: PhantomData<&'f mut &'f c_void>
🔬 This is a nightly-only experimental API. (
c_variadic
)Implementations
sourceimpl<'f> VaListImpl<'f>
impl<'f> VaListImpl<'f>
sourcepub fn as_va_list(&'a mut self) -> VaList<'a, 'f>
🔬 This is a nightly-only experimental API. (c_variadic
)
pub fn as_va_list(&'a mut self) -> VaList<'a, 'f>
c_variadic
)Convert a VaListImpl
into a VaList
that is binary-compatible with C’s va_list
.
sourceimpl<'f> VaListImpl<'f>
impl<'f> VaListImpl<'f>
Trait Implementations
sourceimpl<'f> Clone for VaListImpl<'f>
impl<'f> Clone for VaListImpl<'f>
sourcefn clone(&self) -> VaListImpl<'f>
fn clone(&self) -> VaListImpl<'f>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<'f> Debug for VaListImpl<'f>
impl<'f> Debug for VaListImpl<'f>
Auto Trait Implementations
impl<'f> RefUnwindSafe for VaListImpl<'f>
impl<'f> !Send for VaListImpl<'f>
impl<'f> !Sync for VaListImpl<'f>
impl<'f> Unpin for VaListImpl<'f>
impl<'f> !UnwindSafe for VaListImpl<'f>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more