pub enum DeterminismError {
EntryFunctionNotFound {
function: String,
},
}Expand description
Errors raised before analysis can run.
Variants§
EntryFunctionNotFound
The named entry function is not defined in the supplied source, so the reachability walk has no root. Reported loudly rather than passing a workflow whose entry the analyser never reached.
Trait Implementations§
Source§impl Debug for DeterminismError
impl Debug for DeterminismError
Source§impl Display for DeterminismError
impl Display for DeterminismError
impl Eq for DeterminismError
Source§impl Error for DeterminismError
impl Error for DeterminismError
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()
Source§impl PartialEq for DeterminismError
impl PartialEq for DeterminismError
impl StructuralPartialEq for DeterminismError
Auto Trait Implementations§
impl Freeze for DeterminismError
impl RefUnwindSafe for DeterminismError
impl Send for DeterminismError
impl Sync for DeterminismError
impl Unpin for DeterminismError
impl UnsafeUnpin for DeterminismError
impl UnwindSafe for DeterminismError
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
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.