pub struct IfNodeDescriptor {
pub default_value: u32,
}Expand description
Descriptor for an If-style conditional node. The inner graph is
out-parameter-allocated by CUDA when the node is created — callers
receive its handle back so they can populate it before exec
instantiation.
Fields§
§default_value: u32Trait Implementations§
Source§impl Clone for IfNodeDescriptor
impl Clone for IfNodeDescriptor
Source§fn clone(&self) -> IfNodeDescriptor
fn clone(&self) -> IfNodeDescriptor
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 moreAuto Trait Implementations§
impl Freeze for IfNodeDescriptor
impl RefUnwindSafe for IfNodeDescriptor
impl Send for IfNodeDescriptor
impl Sync for IfNodeDescriptor
impl Unpin for IfNodeDescriptor
impl UnsafeUnpin for IfNodeDescriptor
impl UnwindSafe for IfNodeDescriptor
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