pub enum SchedulerError<A: Display + Debug + Eq + Hash + Clone> {
CombinationalLoop {
blocks: Vec<LogicPath<A>>,
},
MultipleDriver {
blocks: Vec<LogicPath<A>>,
},
InvalidDependencyGraph,
}Variants§
Implementations§
Source§impl<A: Display + Debug + Eq + Hash + Clone> SchedulerError<A>
impl<A: Display + Debug + Eq + Hash + Clone> SchedulerError<A>
pub fn map_addr<B: Display + Debug + Eq + Hash + Clone, F>( self, arena: &SLTNodeArena<A>, target_arena: &mut SLTNodeArena<B>, f: &F, ) -> Result<SchedulerError<B>, SLTNodeFactsError>
Trait Implementations§
impl<A: Eq + Display + Debug + Eq + Hash + Clone> Eq for SchedulerError<A>
Source§impl<A: Display + Debug + Eq + Hash + Clone> Error for SchedulerError<A>
impl<A: Display + Debug + Eq + Hash + Clone> Error for SchedulerError<A>
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
impl<A: PartialEq + Display + Debug + Eq + Hash + Clone> StructuralPartialEq for SchedulerError<A>
Auto Trait Implementations§
impl<A> Freeze for SchedulerError<A>
impl<A> RefUnwindSafe for SchedulerError<A>
impl<A> Send for SchedulerError<A>
impl<A> Sync for SchedulerError<A>
impl<A> Unpin for SchedulerError<A>
impl<A> UnsafeUnpin for SchedulerError<A>
impl<A> UnwindSafe for SchedulerError<A>
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