Struct UNINIT_ARRAY

Source
pub struct UNINIT_ARRAY<T, const N: usize>(/* private fields */);
Expand description

Generic constant for an uninitialized [MaybeUninit<T>; N]. Requires Rust 1.51.0.

§Features

This requires the “rust_1_51” feature, which requires Rust 1.51.0.

§Example

use konst::maybe_uninit::UNINIT_ARRAY;

use std::mem::{self, MaybeUninit};

const INITS: [[u8; 2]; 2] = {
    let mut uninits = [UNINIT_ARRAY::<u8, 2>::V; 2];

    uninits[0] = [MaybeUninit::new(3), MaybeUninit::new(5)];
    uninits[1] = [MaybeUninit::new(8), MaybeUninit::new(13)];

    unsafe{ mem::transmute(uninits) }
};

assert_eq!(INITS, [[3, 5], [8, 13]]);

Implementations§

Source§

impl<T, const N: usize> UNINIT_ARRAY<T, N>

Source

pub const V: [MaybeUninit<T>; N]

The value that this constructs.

Auto Trait Implementations§

§

impl<T, const N: usize> Freeze for UNINIT_ARRAY<T, N>

§

impl<T, const N: usize> RefUnwindSafe for UNINIT_ARRAY<T, N>
where T: RefUnwindSafe,

§

impl<T, const N: usize> Send for UNINIT_ARRAY<T, N>
where T: Send,

§

impl<T, const N: usize> Sync for UNINIT_ARRAY<T, N>
where T: Sync,

§

impl<T, const N: usize> Unpin for UNINIT_ARRAY<T, N>
where T: Unpin,

§

impl<T, const N: usize> UnwindSafe for UNINIT_ARRAY<T, N>
where T: UnwindSafe,

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> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

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, 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.

Layout§

Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.

Size: 0 bytes