pub struct BuiltinEntry {
pub name: String,
}Expand description
Phase 6 wave 11 — interned record for a built-in fn name.
Carries the canonical name so VM / Rust / wasm-gc backends
can look it up through their existing string-keyed builtin
registries; MIR-internal consumers route through BuiltinId
instead and never re-parse the string.
Fields§
§name: StringTrait Implementations§
Source§impl Clone for BuiltinEntry
impl Clone for BuiltinEntry
Source§fn clone(&self) -> BuiltinEntry
fn clone(&self) -> BuiltinEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BuiltinEntry
impl RefUnwindSafe for BuiltinEntry
impl Send for BuiltinEntry
impl Sync for BuiltinEntry
impl Unpin for BuiltinEntry
impl UnsafeUnpin for BuiltinEntry
impl UnwindSafe for BuiltinEntry
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