kernel::alloc::layout

Struct ArrayLayout

Source
pub struct ArrayLayout<T> { /* private fields */ }
Expand description

A layout for an array [T; n].

§Invariants

  • len * size_of::<T>() <= isize::MAX.

Implementations§

Source§

impl<T> ArrayLayout<T>

Source

pub const fn empty() -> Self

Creates a new layout for [T; 0].

Source

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.

Source

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.

Source

pub const fn len(&self) -> usize

Returns the number of array elements represented by this layout.

Source

pub const fn is_empty(&self) -> bool

Returns true when no array elements are represented by this layout.

Trait Implementations§

Source§

impl<T> Clone for ArrayLayout<T>

Source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<T> From<ArrayLayout<T>> for Layout

Source§

fn from(value: ArrayLayout<T>) -> Self

Converts to this type from the input type.
Source§

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> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, E> Init<T, E> for T

Source§

unsafe fn __init(self, slot: *mut T) -> Result<(), E>

Initializes slot. Read more
Source§

fn chain<F>(self, f: F) -> ChainInit<Self, F, T, E>
where F: FnOnce(&mut T) -> Result<(), E>,

First initializes the value using self then calls the function f with the initialized value. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, E> PinInit<T, E> for T

Source§

unsafe fn __pinned_init(self, slot: *mut T) -> Result<(), E>

Initializes slot. Read more
Source§

fn pin_chain<F>(self, f: F) -> ChainPinInit<Self, F, T, E>
where F: FnOnce(Pin<&mut T>) -> Result<(), E>,

First initializes the value using self then calls the function f with the initialized value. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.