pub struct BuiltinFn {
pub name: &'static str,
pub params: Vec<(&'static str, &'static str)>,
pub return_type: &'static str,
pub doc: &'static str,
}Fields§
§name: &'static str§params: Vec<(&'static str, &'static str)>§return_type: &'static str§doc: &'static strAuto Trait Implementations§
impl Freeze for BuiltinFn
impl RefUnwindSafe for BuiltinFn
impl Send for BuiltinFn
impl Sync for BuiltinFn
impl Unpin for BuiltinFn
impl UnwindSafe for BuiltinFn
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