#[repr(C)]pub struct cudaGraphNodeParams {
pub type_: cudaGraphNodeType,
pub reserved0: [c_int; 3],
pub __bindgen_anon_1: cudaGraphNodeParams__bindgen_ty_1,
pub reserved2: c_longlong,
}
Expand description
Graph node parameters. See ::cudaGraphAddNode.
Fields§
§type_: cudaGraphNodeType
< Type of the node
reserved0: [c_int; 3]
< Reserved. Must be zero.
__bindgen_anon_1: cudaGraphNodeParams__bindgen_ty_1
§reserved2: c_longlong
< Reserved bytes. Must be zero.
Trait Implementations§
Source§impl Clone for cudaGraphNodeParams
impl Clone for cudaGraphNodeParams
Source§fn clone(&self) -> cudaGraphNodeParams
fn clone(&self) -> cudaGraphNodeParams
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 moreimpl Copy for cudaGraphNodeParams
Auto Trait Implementations§
impl Freeze for cudaGraphNodeParams
impl RefUnwindSafe for cudaGraphNodeParams
impl !Send for cudaGraphNodeParams
impl !Sync for cudaGraphNodeParams
impl Unpin for cudaGraphNodeParams
impl UnwindSafe for cudaGraphNodeParams
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