#[repr(C)]pub struct hipGraphInstantiateParams {
pub errNode_out: hipGraphNode_t,
pub flags: c_ulonglong,
pub result_out: hipGraphInstantiateResult,
pub uploadStream: hipStream_t,
}
Expand description
Graph Instantiation parameters
Fields§
§errNode_out: hipGraphNode_t
< The node which caused instantiation to fail, if any
flags: c_ulonglong
< Instantiation flags
result_out: hipGraphInstantiateResult
< Whether instantiation was successful. If it failed, the reason why
uploadStream: hipStream_t
< Upload stream
Trait Implementations§
Source§impl Clone for hipGraphInstantiateParams
impl Clone for hipGraphInstantiateParams
Source§fn clone(&self) -> hipGraphInstantiateParams
fn clone(&self) -> hipGraphInstantiateParams
Returns a copy 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 hipGraphInstantiateParams
impl Debug for hipGraphInstantiateParams
impl Copy for hipGraphInstantiateParams
Auto Trait Implementations§
impl Freeze for hipGraphInstantiateParams
impl RefUnwindSafe for hipGraphInstantiateParams
impl !Send for hipGraphInstantiateParams
impl !Sync for hipGraphInstantiateParams
impl Unpin for hipGraphInstantiateParams
impl UnwindSafe for hipGraphInstantiateParams
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