struct BuiltInData {
inner: TypeInner,
builtin: BuiltIn,
mutable: bool,
storage: StorageQualifier,
}
Expand description
Information about a builtin used in add_builtin
.
Fields§
§inner: TypeInner
The type of the builtin.
builtin: BuiltIn
The associated builtin class.
mutable: bool
Whether the builtin can be written to or not.
storage: StorageQualifier
The 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