pub enum FieldKind {
Standard {
field_def_num: u8,
},
Developer {
field_def_num: u8,
developer_data_index: u8,
},
}Expand description
Provenance of a field — distinguishes Profile-declared standard fields from runtime-registered developer fields.
Variants§
Standard
A standard field defined in Profile.xlsx.
Developer
A developer field; without M6’s field_description registry, the
value will be Value::Bytes and name will be a synthetic placeholder.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FieldKind
impl RefUnwindSafe for FieldKind
impl Send for FieldKind
impl Sync for FieldKind
impl Unpin for FieldKind
impl UnsafeUnpin for FieldKind
impl UnwindSafe for FieldKind
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