pub struct GridSampleBackwardDescriptor {
pub n: i32,
pub c: i32,
pub ih: i32,
pub iw: i32,
pub oh: i32,
pub ow: i32,
pub element: ElementKind,
}Expand description
Descriptor for grid_sample_backward.
Fields§
§n: i32Batch.
c: i32Channels.
ih: i32Input height.
iw: i32Input width.
oh: i32Output height.
ow: i32Output width.
element: ElementKindValue element type.
Trait Implementations§
Source§impl Clone for GridSampleBackwardDescriptor
impl Clone for GridSampleBackwardDescriptor
Source§fn clone(&self) -> GridSampleBackwardDescriptor
fn clone(&self) -> GridSampleBackwardDescriptor
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for GridSampleBackwardDescriptor
Auto Trait Implementations§
impl Freeze for GridSampleBackwardDescriptor
impl RefUnwindSafe for GridSampleBackwardDescriptor
impl Send for GridSampleBackwardDescriptor
impl Sync for GridSampleBackwardDescriptor
impl Unpin for GridSampleBackwardDescriptor
impl UnsafeUnpin for GridSampleBackwardDescriptor
impl UnwindSafe for GridSampleBackwardDescriptor
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