Skip to main content

RequiresIncludesOp

Trait RequiresIncludesOp 

Source
pub trait RequiresIncludesOp<T>: Op {
    // Required method
    fn includes(&self, ctx: &Context) -> Vec<String>;

    // Provided method
    fn verify(_op: &dyn Op, _ctx: &Context) -> Result<()>
       where Self: Sized { ... }
}

Required Methods§

Source

fn includes(&self, ctx: &Context) -> Vec<String>

Provided Methods§

Source

fn verify(_op: &dyn Op, _ctx: &Context) -> Result<()>
where Self: Sized,

Trait Implementations§

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl RequiresIncludesOp<Cuda> for CommitGroupOp

Source§

fn includes(&self, _ctx: &Context) -> Vec<String>

Source§

impl RequiresIncludesOp<Cuda> for ReadBuiltinOp

Source§

fn includes(&self, ctx: &Context) -> Vec<String>

Source§

impl RequiresIncludesOp<Cuda> for SyncAsyncProxyOp

Source§

fn includes(&self, _ctx: &Context) -> Vec<String>

Source§

impl RequiresIncludesOp<Cuda> for TmaStoreOp

Source§

fn includes(&self, _ctx: &Context) -> Vec<String>

Source§

impl RequiresIncludesOp<Cuda> for WaitGroupOp

Source§

fn includes(&self, _ctx: &Context) -> Vec<String>

Source§

impl RequiresIncludesOp<Cuda> for WaitGroupReadOp

Source§

fn includes(&self, _ctx: &Context) -> Vec<String>

Implementors§