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