pub trait OutDim {
// Required methods
fn get_out_dim(&self) -> i64;
fn set_out_dim(&mut self, v: i64);
}Expand description
Interface for handling output dimensions.
Required Methods§
Sourcefn get_out_dim(&self) -> i64
fn get_out_dim(&self) -> i64
Returns the output dimension.
Sourcefn set_out_dim(&mut self, v: i64)
fn set_out_dim(&mut self, v: i64)
Sets the output dimension.