pub struct Arguments {
pub args: Vec<Arg>,
pub vararg: Option<Arg>,
pub kwonlyargs: Vec<Arg>,
pub kwarg: Option<Arg>,
}
Fields§
§args: Vec<Arg>
§vararg: Option<Arg>
§kwonlyargs: Vec<Arg>
§kwarg: Option<Arg>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Arguments
impl RefUnwindSafe for Arguments
impl Send for Arguments
impl Sync for Arguments
impl Unpin for Arguments
impl UnwindSafe for Arguments
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