pub struct LinkerOptions {
pub debug_info: bool,
pub log_info: bool,
pub log_errors: bool,
pub verbose_logs: bool,
}Expand description
Linker options for CUDA, can generally just be defaulted.
Fields§
§debug_info: boolAdd debug symbols to emitted binary
log_info: boolCollect INFO logs from CUDA build/link, up to 16 MB, then emit to STDOUT
log_errors: boolCollect ERROR logs from CUDA build/link, up to 16 MB, then emit to STDOUT
verbose_logs: boolIncrease log verbosity
Trait Implementations§
Source§impl Clone for LinkerOptions
impl Clone for LinkerOptions
Source§fn clone(&self) -> LinkerOptions
fn clone(&self) -> LinkerOptions
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 LinkerOptions
impl Debug for LinkerOptions
Source§impl Default for LinkerOptions
impl Default for LinkerOptions
impl Copy for LinkerOptions
Auto Trait Implementations§
impl Freeze for LinkerOptions
impl RefUnwindSafe for LinkerOptions
impl Send for LinkerOptions
impl Sync for LinkerOptions
impl Unpin for LinkerOptions
impl UnwindSafe for LinkerOptions
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