Trait tc_collection::tensor::TensorWrite
source · pub trait TensorWrite {
// Required methods
fn write_value<'life0, 'async_trait>(
&'life0 self,
txn_id: TxnId,
range: Range,
value: Number
) -> Pin<Box<dyn Future<Output = TCResult<()>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn write_value_at<'life0, 'async_trait>(
&'life0 self,
txn_id: TxnId,
coord: Coord,
value: Number
) -> Pin<Box<dyn Future<Output = TCResult<()>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}
Expand description
Tensor
write operations