#[repr(u8)]pub enum EntityType {
Duration = 1,
Deadline = 2,
Schedule = 3,
Sequence = 4,
Decay = 5,
}Expand description
Entity types stored in file.
Variants§
Duration = 1
Duration estimate.
Deadline = 2
Deadline.
Schedule = 3
Schedule.
Sequence = 4
Sequence.
Decay = 5
Decay model.
Trait Implementations§
Source§impl Clone for EntityType
impl Clone for EntityType
Source§fn clone(&self) -> EntityType
fn clone(&self) -> EntityType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for EntityType
impl Debug for EntityType
Source§impl PartialEq for EntityType
impl PartialEq for EntityType
Source§impl TryFrom<u8> for EntityType
impl TryFrom<u8> for EntityType
impl Copy for EntityType
impl Eq for EntityType
impl StructuralPartialEq for EntityType
Auto Trait Implementations§
impl Freeze for EntityType
impl RefUnwindSafe for EntityType
impl Send for EntityType
impl Sync for EntityType
impl Unpin for EntityType
impl UnsafeUnpin for EntityType
impl UnwindSafe for EntityType
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