pub enum ValidationWarning {
OrphanEntity {
entity_id: String,
},
TemporalAmbiguity {
description: String,
},
}Expand description
A soft validation warning that does not indicate broken data but may signal authoring oversights.
Variants§
OrphanEntity
An entity with zero incoming and zero outgoing edges — it is completely disconnected from the rest of the graph.
TemporalAmbiguity
A temporal relationship that is ambiguous (e.g. overlapping intervals where strict ordering was expected) but not provably wrong.
Trait Implementations§
Source§impl Debug for ValidationWarning
impl Debug for ValidationWarning
Auto Trait Implementations§
impl Freeze for ValidationWarning
impl RefUnwindSafe for ValidationWarning
impl Send for ValidationWarning
impl Sync for ValidationWarning
impl Unpin for ValidationWarning
impl UnsafeUnpin for ValidationWarning
impl UnwindSafe for ValidationWarning
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