pub struct BareVariadic {
pub attrs: Vec<Attribute>,
pub name: Option<(Ident, Colon)>,
pub dots: DotDotDot,
pub comma: Option<Comma>,
}Expand description
The variadic argument of a function pointer like fn(usize, ...).
Fields§
§attrs: Vec<Attribute>§name: Option<(Ident, Colon)>§dots: DotDotDot§comma: Option<Comma>Auto Trait Implementations§
impl Freeze for BareVariadic
impl RefUnwindSafe for BareVariadic
impl !Send for BareVariadic
impl !Sync for BareVariadic
impl Unpin for BareVariadic
impl UnwindSafe for BareVariadic
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