#[repr(C)]pub struct RecordField {
pub name: &'static str,
pub descriptor: *const TypeDescriptor,
}Expand description
One field of a record shape: its source name plus the descriptor for the
values stored at that field. The descriptor pointer is const data shared
across all records of this shape.
Fields§
§name: &'static str§descriptor: *const TypeDescriptorAuto Trait Implementations§
impl !Send for RecordField
impl !Sync for RecordField
impl Freeze for RecordField
impl RefUnwindSafe for RecordField
impl Unpin for RecordField
impl UnsafeUnpin for RecordField
impl UnwindSafe for RecordField
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