pub struct BuiltinInfo {
pub name: &'static str,
pub arg_count: usize,
pub variadic: bool,
pub kind: ExprKind,
}
Fields§
§name: &'static str
§arg_count: usize
§variadic: bool
§kind: ExprKind
Trait Implementations§
Source§impl Clone for BuiltinInfo
impl Clone for BuiltinInfo
Source§fn clone(&self) -> BuiltinInfo
fn clone(&self) -> BuiltinInfo
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 moreimpl Copy for BuiltinInfo
Auto Trait Implementations§
impl Freeze for BuiltinInfo
impl RefUnwindSafe for BuiltinInfo
impl Send for BuiltinInfo
impl Sync for BuiltinInfo
impl Unpin for BuiltinInfo
impl UnwindSafe for BuiltinInfo
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