Enum quil_rs::program::analysis::BasicBlockScheduleError
source · pub enum BasicBlockScheduleError {
ScheduleError(ScheduleError),
ComputedScheduleError(ComputedScheduleError),
ProgramError(ProgramError),
}Variants§
ScheduleError(ScheduleError)
ComputedScheduleError(ComputedScheduleError)
ProgramError(ProgramError)
Trait Implementations§
source§impl Debug for BasicBlockScheduleError
impl Debug for BasicBlockScheduleError
source§impl Display for BasicBlockScheduleError
impl Display for BasicBlockScheduleError
source§impl Error for BasicBlockScheduleError
impl Error for BasicBlockScheduleError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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 From<ComputedScheduleError> for BasicBlockScheduleError
impl From<ComputedScheduleError> for BasicBlockScheduleError
source§fn from(source: ComputedScheduleError) -> Self
fn from(source: ComputedScheduleError) -> Self
Converts to this type from the input type.
source§impl From<ProgramError> for BasicBlockScheduleError
impl From<ProgramError> for BasicBlockScheduleError
source§fn from(source: ProgramError) -> Self
fn from(source: ProgramError) -> Self
Converts to this type from the input type.
source§impl From<ScheduleError> for BasicBlockScheduleError
impl From<ScheduleError> for BasicBlockScheduleError
source§fn from(source: ScheduleError) -> Self
fn from(source: ScheduleError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for BasicBlockScheduleError
impl Send for BasicBlockScheduleError
impl Sync for BasicBlockScheduleError
impl Unpin for BasicBlockScheduleError
impl !UnwindSafe for BasicBlockScheduleError
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