pub struct FunctionParam {
pub function_name: String,
pub param_name: String,
pub location: SourceLocation,
}Expand description
A function parameter discovered in source code.
Fields§
§function_name: String§param_name: String§location: SourceLocationTrait Implementations§
Source§impl Clone for FunctionParam
impl Clone for FunctionParam
Source§fn clone(&self) -> FunctionParam
fn clone(&self) -> FunctionParam
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 FunctionParam
impl RefUnwindSafe for FunctionParam
impl Send for FunctionParam
impl Sync for FunctionParam
impl Unpin for FunctionParam
impl UnsafeUnpin for FunctionParam
impl UnwindSafe for FunctionParam
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