compute_it

Trait ComputationValueType

Source
pub trait ComputationValueType {
    type Type: 'static + Send + Sync;
}
Expand description

Trait for building value in the computation graph

Required Associated Types§

Source

type Type: 'static + Send + Sync

Type of the value

Implementors§

Source§

impl<T> ComputationValueType for Computation<T>
where T: Send + Sync + 'static,

Source§

type Type = T

Source§

impl<T> ComputationValueType for Variable<T>
where T: Send + Sync + 'static,

Source§

type Type = T

Source§

impl<T, C> ComputationValueType for VecComputation<T, C>
where T: Send + Sync + 'static, C: Send + Sync + 'static,

Source§

type Type = T