#[repr(C)]pub struct TiNdShape {
pub dim_count: u32,
pub dims: [u32; 16],
}Expand description
Structure TiNdShape
Multi-dimensional size of an ND-array. Dimension sizes after dim_count are ignored.
Fields§
§dim_count: u32Number of dimensions.
dims: [u32; 16]Dimension sizes.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TiNdShape
impl RefUnwindSafe for TiNdShape
impl Send for TiNdShape
impl Sync for TiNdShape
impl Unpin for TiNdShape
impl UnwindSafe for TiNdShape
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