pub struct ArrayLayout<T> { /* private fields */ }
Expand description
Implementations§
Source§impl<T> ArrayLayout<T>
impl<T> ArrayLayout<T>
Sourcepub const fn new(len: usize) -> Result<Self, LayoutError>
pub const fn new(len: usize) -> Result<Self, LayoutError>
Creates a new layout for [T; len]
.
§Errors
When len * size_of::<T>()
overflows or when len * size_of::<T>() > isize::MAX
.
Sourcepub unsafe fn new_unchecked(len: usize) -> Self
pub unsafe fn new_unchecked(len: usize) -> Self
Creates a new layout for [T; len]
.
§Safety
len
must be a value, for which len * size_of::<T>() <= isize::MAX
is true.
Trait Implementations§
Source§impl<T> Clone for ArrayLayout<T>
impl<T> Clone for ArrayLayout<T>
Source§impl<T> From<ArrayLayout<T>> for Layout
impl<T> From<ArrayLayout<T>> for Layout
Source§fn from(value: ArrayLayout<T>) -> Self
fn from(value: ArrayLayout<T>) -> Self
Converts to this type from the input type.
impl<T> Copy for ArrayLayout<T>
Auto Trait Implementations§
impl<T> Freeze for ArrayLayout<T>
impl<T> RefUnwindSafe for ArrayLayout<T>
impl<T> Send for ArrayLayout<T>
impl<T> Sync for ArrayLayout<T>
impl<T> Unpin for ArrayLayout<T>
impl<T> UnwindSafe for ArrayLayout<T>
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