#[repr(u32)]pub enum IdType {
Id = 0,
Ecc = 1,
Uuid = 2,
Scc = 3,
}Expand description
Identifier type. The file can specify the type used during creation if desired. This does not change the behavior nor how things are matched, it is a utility for purposes of the use case being utilized.
Variants§
Id = 0
Pure numeric id’s.
Ecc = 1
Dual eight character codes.
Uuid = 2
A UUID.
Scc = 3
A 16 character code.
Auto Trait Implementations§
impl RefUnwindSafe for IdType
impl Send for IdType
impl Sync for IdType
impl Unpin for IdType
impl UnwindSafe for IdType
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