#[repr(C)]pub struct ArrayType {
pub t: &'static Shape,
pub n: usize,
}Expand description
Describes a fixed-size array ([T; N])
Fields§
§t: &'static ShapeShape of the underlying object stored on array
n: usizeConstant length of the array
Trait Implementations§
impl Copy for ArrayType
Auto Trait Implementations§
impl Freeze for ArrayType
impl RefUnwindSafe for ArrayType
impl Send for ArrayType
impl Sync for ArrayType
impl Unpin for ArrayType
impl UnwindSafe for ArrayType
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