pub enum PrintfArg {
Int(i64),
Float(f64),
String(String),
}Expand description
A single argument captured from a GPU printf call.
Variants§
Trait Implementations§
impl StructuralPartialEq for PrintfArg
Auto Trait Implementations§
impl Freeze for PrintfArg
impl RefUnwindSafe for PrintfArg
impl Send for PrintfArg
impl Sync for PrintfArg
impl Unpin for PrintfArg
impl UnsafeUnpin for PrintfArg
impl UnwindSafe for PrintfArg
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