pub struct LiveIntervalError<V> {
pub rule: &'static str,
pub block: Option<usize>,
pub instruction: Option<usize>,
pub values: Vec<V>,
pub message: String,
}Expand description
Failure while constructing strict-SSA live intervals.
Fields§
§rule: &'static str§block: Option<usize>§instruction: Option<usize>§values: Vec<V>§message: StringTrait Implementations§
Source§impl<V: Clone> Clone for LiveIntervalError<V>
impl<V: Clone> Clone for LiveIntervalError<V>
Source§fn clone(&self) -> LiveIntervalError<V>
fn clone(&self) -> LiveIntervalError<V>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<V: Debug> Debug for LiveIntervalError<V>
impl<V: Debug> Debug for LiveIntervalError<V>
Source§impl<V: Debug> Display for LiveIntervalError<V>
impl<V: Debug> Display for LiveIntervalError<V>
impl<V: Eq> Eq for LiveIntervalError<V>
Source§impl<V: Debug> Error for LiveIntervalError<V>
impl<V: Debug> Error for LiveIntervalError<V>
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<V: PartialEq> PartialEq for LiveIntervalError<V>
impl<V: PartialEq> PartialEq for LiveIntervalError<V>
impl<V: PartialEq> StructuralPartialEq for LiveIntervalError<V>
Auto Trait Implementations§
impl<V> Freeze for LiveIntervalError<V>
impl<V> RefUnwindSafe for LiveIntervalError<V>where
Vec<V>: RefUnwindSafe,
impl<V> Send for LiveIntervalError<V>
impl<V> Sync for LiveIntervalError<V>
impl<V> Unpin for LiveIntervalError<V>
impl<V> UnsafeUnpin for LiveIntervalError<V>where
Vec<V>: UnsafeUnpin,
impl<V> UnwindSafe for LiveIntervalError<V>where
Vec<V>: UnwindSafe,
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