pub struct VaArgExpression {
pub va_list: Box<Node<Expression>>,
pub type_name: Node<TypeName>,
}
Expand description
Variable argument list access
Result of expansion of va_arg
macro.
(C11 7.16.1.1).
Fields§
§va_list: Box<Node<Expression>>
§type_name: Node<TypeName>
Trait Implementations§
Source§impl Clone for VaArgExpression
impl Clone for VaArgExpression
Source§fn clone(&self) -> VaArgExpression
fn clone(&self) -> VaArgExpression
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for VaArgExpression
impl Debug for VaArgExpression
Source§impl PartialEq for VaArgExpression
impl PartialEq for VaArgExpression
impl StructuralPartialEq for VaArgExpression
Auto Trait Implementations§
impl Freeze for VaArgExpression
impl RefUnwindSafe for VaArgExpression
impl Send for VaArgExpression
impl Sync for VaArgExpression
impl Unpin for VaArgExpression
impl UnwindSafe for VaArgExpression
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