pub enum AutoParallelError {
DependencyCycle(String),
InvalidGraph(String),
CostModelError(String),
PartitioningFailed(String),
}Expand description
Auto-parallelization errors.
Variants§
Trait Implementations§
Source§impl Clone for AutoParallelError
impl Clone for AutoParallelError
Source§fn clone(&self) -> AutoParallelError
fn clone(&self) -> AutoParallelError
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 AutoParallelError
impl Debug for AutoParallelError
Source§impl Display for AutoParallelError
impl Display for AutoParallelError
Source§impl Error for AutoParallelError
impl Error for AutoParallelError
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 AutoParallelError
impl PartialEq for AutoParallelError
impl StructuralPartialEq for AutoParallelError
Auto Trait Implementations§
impl Freeze for AutoParallelError
impl RefUnwindSafe for AutoParallelError
impl Send for AutoParallelError
impl Sync for AutoParallelError
impl Unpin for AutoParallelError
impl UnwindSafe for AutoParallelError
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