pub struct SortBackwardDescriptor {
pub batch: i32,
pub row_len: i32,
pub element: ElementKind,
}Expand description
Descriptor for a sort_backward op.
Fields§
§batch: i32Number of independent rows.
row_len: i32Length of each row.
element: ElementKindValue (gradient) element type.
Trait Implementations§
Source§impl Clone for SortBackwardDescriptor
impl Clone for SortBackwardDescriptor
Source§fn clone(&self) -> SortBackwardDescriptor
fn clone(&self) -> SortBackwardDescriptor
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 SortBackwardDescriptor
Auto Trait Implementations§
impl Freeze for SortBackwardDescriptor
impl RefUnwindSafe for SortBackwardDescriptor
impl Send for SortBackwardDescriptor
impl Sync for SortBackwardDescriptor
impl Unpin for SortBackwardDescriptor
impl UnsafeUnpin for SortBackwardDescriptor
impl UnwindSafe for SortBackwardDescriptor
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