#[repr(C)]pub struct CUlaunchAttribute {
pub id: c_uint,
pub pad: [u8; 4],
pub value: CUlaunchAttributeValue,
}Expand description
CUlaunchAttribute — one entry in a CUlaunchConfig’s attribute list.
Fields§
§id: c_uint§pad: [u8; 4]cuda.h inserts 4 bytes of padding before the union.
value: CUlaunchAttributeValueTrait Implementations§
Source§impl Clone for CUlaunchAttribute
impl Clone for CUlaunchAttribute
Source§fn clone(&self) -> CUlaunchAttribute
fn clone(&self) -> CUlaunchAttribute
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 Debug for CUlaunchAttribute
impl Debug for CUlaunchAttribute
Source§impl Default for CUlaunchAttribute
impl Default for CUlaunchAttribute
Source§fn default() -> CUlaunchAttribute
fn default() -> CUlaunchAttribute
Returns the “default value” for a type. Read more
impl Copy for CUlaunchAttribute
Auto Trait Implementations§
impl Freeze for CUlaunchAttribute
impl RefUnwindSafe for CUlaunchAttribute
impl Send for CUlaunchAttribute
impl Sync for CUlaunchAttribute
impl Unpin for CUlaunchAttribute
impl UnsafeUnpin for CUlaunchAttribute
impl UnwindSafe for CUlaunchAttribute
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