Struct no_std_compat2::ffi::VaList
source · #[repr(transparent)]pub struct VaList<'a, 'f>where
'f: 'a,{ /* private fields */ }🔬This is a nightly-only experimental API. (
c_variadic)Available on non-crate feature
std only.Expand description
A wrapper for a va_list
Methods from Deref<Target = VaListImpl<'f>>§
sourcepub fn as_va_list<'a>(&'a mut self) -> VaList<'a, 'f>
🔬This is a nightly-only experimental API. (c_variadic)Available on non-AArch64 and non-PowerPC and non-s390x and non-x86-64, or AArch64 and (macOS or iOS), or target_family="wasm", or JavaScript, or target_os="uefi", or Windows only.
pub fn as_va_list<'a>(&'a mut self) -> VaList<'a, 'f>
c_variadic)target_family="wasm", or JavaScript, or target_os="uefi", or Windows only.Convert a VaListImpl into a VaList that is binary-compatible with C’s va_list.
Trait Implementations§
Auto Trait Implementations§
impl<'a, 'f> RefUnwindSafe for VaList<'a, 'f>
impl<'a, 'f> !Send for VaList<'a, 'f>
impl<'a, 'f> !Sync for VaList<'a, 'f>
impl<'a, 'f> Unpin for VaList<'a, 'f>
impl<'a, 'f> !UnwindSafe for VaList<'a, 'f>
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