pub struct TypeInfo {
pub id: TypeId,
pub name: String,
pub kind: TypeKind,
}
Expand description
Contains all information about a specific type
Fields§
§id: TypeId
Unique identifier for this type
name: String
Name of the type
kind: TypeKind
The kind of type (integer, float, string, etc.)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TypeInfo
impl RefUnwindSafe for TypeInfo
impl Send for TypeInfo
impl Sync for TypeInfo
impl Unpin for TypeInfo
impl UnwindSafe for TypeInfo
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