struct BuiltInData {
inner: TypeInner,
builtin: BuiltIn,
mutable: bool,
storage: StorageQualifier,
}Expand description
Information about a builtin used in add_builtin.
Fields§
§inner: TypeInnerThe type of the builtin.
builtin: BuiltInThe associated builtin class.
mutable: boolWhether the builtin can be written to or not.
storage: StorageQualifierThe storage used for the builtin.
Auto Trait Implementations§
impl Freeze for BuiltInData
impl RefUnwindSafe for BuiltInData
impl Send for BuiltInData
impl Sync for BuiltInData
impl Unpin for BuiltInData
impl UnwindSafe for BuiltInData
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