pub enum JitSeverity {
Fatal,
Error,
Warning,
Info,
}Expand description
Severity of a JIT compiler diagnostic message.
Variants§
Fatal
A fatal error that prevents PTX compilation.
Error
A non-fatal error.
Warning
A compiler warning (compilation may still succeed).
Info
An informational message (e.g. register usage).
Trait Implementations§
Source§impl Clone for JitSeverity
impl Clone for JitSeverity
Source§fn clone(&self) -> JitSeverity
fn clone(&self) -> JitSeverity
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 JitSeverity
impl Debug for JitSeverity
Source§impl Display for JitSeverity
impl Display for JitSeverity
Source§impl Hash for JitSeverity
impl Hash for JitSeverity
Source§impl PartialEq for JitSeverity
impl PartialEq for JitSeverity
impl Copy for JitSeverity
impl Eq for JitSeverity
impl StructuralPartialEq for JitSeverity
Auto Trait Implementations§
impl Freeze for JitSeverity
impl RefUnwindSafe for JitSeverity
impl Send for JitSeverity
impl Sync for JitSeverity
impl Unpin for JitSeverity
impl UnsafeUnpin for JitSeverity
impl UnwindSafe for JitSeverity
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