pub struct Struct {
pub original_type_id: TypeId,
pub field_names: IndexSet<String>,
pub type_id: TypeId,
pub nil_terminated: bool,
pub generic_types: Vec<TypeId>,
}Expand description
Struct types are just wrappers around a structural type that provide field information.
Fields§
§original_type_id: TypeIdA pointer to the struct from which this was derived.
field_names: IndexSet<String>§type_id: TypeId§nil_terminated: bool§generic_types: Vec<TypeId>Trait Implementations§
Auto Trait Implementations§
impl Freeze for Struct
impl RefUnwindSafe for Struct
impl Send for Struct
impl Sync for Struct
impl Unpin for Struct
impl UnwindSafe for Struct
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