pub struct NativeFunctionParam {
pub name: String,
pub ty: String,
pub is_rest: bool,
}Fields§
§name: String§ty: String§is_rest: boolTrait Implementations§
Source§impl Clone for NativeFunctionParam
impl Clone for NativeFunctionParam
Source§fn clone(&self) -> NativeFunctionParam
fn clone(&self) -> NativeFunctionParam
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 NativeFunctionParam
impl RefUnwindSafe for NativeFunctionParam
impl Send for NativeFunctionParam
impl Sync for NativeFunctionParam
impl Unpin for NativeFunctionParam
impl UnwindSafe for NativeFunctionParam
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