Skip to main content

ConstructConcat

Trait ConstructConcat 

Source
pub trait ConstructConcat<A, T>: PlatformInstance
where A: Access<T>, T: Number,
{ type Op: ReadOp<Self, T>; // Required method fn concat(self, data: Vec<A>) -> Result<AccessOp<Self::Op, Self>, Error>; }

Required Associated Types§

Source

type Op: ReadOp<Self, T>

Required Methods§

Source

fn concat(self, data: Vec<A>) -> Result<AccessOp<Self::Op, Self>, Error>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<A, T> ConstructConcat<A, T> for Platform
where A: Access<T>, T: Number,

Source§

type Op = Concat<A, T>

Source§

impl<A, T> ConstructConcat<A, T> for Host
where A: Access<T>, T: Number,

Source§

type Op = Concat<A, T>