pub struct BuiltinInfo {
pub name: &'static str,
pub kind: BuiltinKind,
pub description: &'static str,
}Expand description
A summary description of a builtin.
Fields§
§name: &'static strName.
kind: BuiltinKindKind.
description: &'static strShort description.
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 moreAuto Trait Implementations§
impl Freeze for BuiltinInfo
impl RefUnwindSafe for BuiltinInfo
impl Send for BuiltinInfo
impl Sync for BuiltinInfo
impl Unpin for BuiltinInfo
impl UnsafeUnpin 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