pub struct VaList<'a, 'f>where
'f: 'a,{ /* private fields */ }
š¬This is a nightly-only experimental API. (
c_variadic
)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
)
pub fn as_va_list<'a>(&'a mut self) -> VaList<'a, 'f>
c_variadic
)Converts a VaListImpl
into a VaList
that is binary-compatible with Cās va_list
.