pub struct PoolingConfig {
pub window: Vec<i32>,
pub padding: Vec<i32>,
pub stride: Vec<i32>,
}Fields§
§window: Vec<i32>§padding: Vec<i32>§stride: Vec<i32>Trait Implementations§
Source§impl Clone for PoolingConfig
impl Clone for PoolingConfig
Source§fn clone(&self) -> PoolingConfig
fn clone(&self) -> PoolingConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PoolingConfig
impl Debug for PoolingConfig
impl<T> NNOperationConfig<T> for PoolingConfig
Auto Trait Implementations§
impl Freeze for PoolingConfig
impl RefUnwindSafe for PoolingConfig
impl Send for PoolingConfig
impl Sync for PoolingConfig
impl Unpin for PoolingConfig
impl UnwindSafe for PoolingConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more