pub enum AnomalyType {
DependencyCycle,
CapacityOverflow,
CausalityViolation,
EntanglementConflict,
GravityConflict,
ImpossibleDeadline,
}Expand description
Classification of temporal anomalies.
Variants§
DependencyCycle
A circular dependency in the temporal graph.
CapacityOverflow
Too many items scheduled in the same period.
CausalityViolation
An effect precedes its cause.
EntanglementConflict
Conflicting entanglements.
GravityConflict
Two gravity wells fighting over the same item.
ImpossibleDeadline
A deadline that cannot possibly be met.
Trait Implementations§
Source§impl Clone for AnomalyType
impl Clone for AnomalyType
Source§fn clone(&self) -> AnomalyType
fn clone(&self) -> AnomalyType
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 AnomalyType
impl Debug for AnomalyType
Source§impl<'de> Deserialize<'de> for AnomalyType
impl<'de> Deserialize<'de> for AnomalyType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for AnomalyType
impl Hash for AnomalyType
Source§impl PartialEq for AnomalyType
impl PartialEq for AnomalyType
Source§impl Serialize for AnomalyType
impl Serialize for AnomalyType
impl Copy for AnomalyType
impl Eq for AnomalyType
impl StructuralPartialEq for AnomalyType
Auto Trait Implementations§
impl Freeze for AnomalyType
impl RefUnwindSafe for AnomalyType
impl Send for AnomalyType
impl Sync for AnomalyType
impl Unpin for AnomalyType
impl UnsafeUnpin for AnomalyType
impl UnwindSafe for AnomalyType
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