pub struct FunctionArgs {
pub calling_convention: CallingConvention,
pub args: Vec<FunctionArg>,
}
Expand description
Arguments for this function
Fields§
§calling_convention: CallingConvention
What we assumed the calling convention was.
args: Vec<FunctionArg>
The actual arguments.
Trait Implementations§
Source§impl Clone for FunctionArgs
impl Clone for FunctionArgs
Source§fn clone(&self) -> FunctionArgs
fn clone(&self) -> FunctionArgs
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for FunctionArgs
impl RefUnwindSafe for FunctionArgs
impl Send for FunctionArgs
impl Sync for FunctionArgs
impl Unpin for FunctionArgs
impl UnwindSafe for FunctionArgs
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