Skip to main content

RArray

Struct RArray 

Source
#[repr(transparent)]
pub struct RArray<T, const NDIM: usize> { sexp: SEXP, _marker: PhantomData<*const T>, }
Expand description

An N-dimensional R array.

This type wraps an R array SEXP. The dimension count NDIM is tracked at compile time, but dimension sizes are read from the R object.

§Type Parameters

  • T: The element type, must implement RNativeType
  • NDIM: The number of dimensions (compile-time constant)

§Thread Safety

This type is !Send and !Sync because its methods require access to R APIs that must run on the R main thread.

Fields§

§sexp: SEXP§_marker: PhantomData<*const T>

Implementations§

Source§

impl<T, const NDIM: usize> RArray<T, NDIM>

Source

pub const unsafe fn from_sexp_unchecked(sexp: SEXP) -> Self

Create an RArray from a SEXP without validation.

§Safety
  • The SEXP must be protected from GC
  • The SEXP must have the correct type for T
  • The SEXP must have exactly NDIM dimensions
Source

pub const fn as_sexp(&self) -> SEXP

Get the underlying SEXP.

Source

pub fn into_inner(self) -> SEXP

Consume and return the underlying SEXP.

Source

pub unsafe fn dims(&self) -> [usize; NDIM]

Get the dimensions as an array.

§Safety

The SEXP must be valid.

Source

pub unsafe fn dim(&self, dim: usize) -> usize

Get a specific dimension size.

§Safety

The SEXP must be valid.

§Panics

Panics if dim >= NDIM.

Source

pub fn len(&self) -> usize

Get the total number of elements.

Source

pub fn is_empty(&self) -> bool

Check if the array is empty.

Source

pub unsafe fn linear_index(&self, indices: [usize; NDIM]) -> usize

Convert N-dimensional indices to linear index (column-major).

§Safety

The SEXP must be valid (needed to read dims).

§Panics

Panics if any index is out of bounds.

Source§

impl<T: RNativeType, const NDIM: usize> RArray<T, NDIM>

Source

pub unsafe fn from_sexp(sexp: SEXP) -> Result<Self, SexpError>

Create an RArray from a SEXP, validating type and dimensions.

§Safety

The SEXP must be protected from GC for the lifetime of the returned RArray.

§Errors

Returns an error if:

  • The SEXP type doesn’t match T::SEXP_TYPE
  • The dim attribute has wrong number of dimensions
Source

pub unsafe fn as_slice(&self) -> &[T]

Get the data as a slice (column-major order).

§Safety

The SEXP must be protected and valid.

Source

pub unsafe fn as_slice_mut(&mut self) -> &mut [T]

Get the data as a mutable slice (column-major order).

§Safety
  • The SEXP must be protected and valid
  • No other references to the data may exist
Source

pub unsafe fn to_vec(&self) -> Vec<T>
where T: Copy,

Copy array data to an owned Vec<T>.

This method copies the data, making it safe to use in worker threads or pass to parallel computation. The copy is performed on the current thread (which must be the R main thread).

§Safety

The SEXP must be protected and valid.

§Example
use miniextendr_api::rarray::RMatrix;

#[miniextendr(unsafe(main_thread))]
fn process_matrix(m: RMatrix<f64>) -> f64 {
    // Copy data - Vec<f64> is Send and can be used in worker threads
    let data: Vec<f64> = unsafe { m.to_vec() };
    // Now data can be passed to parallel computation
    data.iter().sum()
}
Source

pub unsafe fn get(&self, indices: [usize; NDIM]) -> T
where T: Copy,

Get an element by N-dimensional indices.

§Safety

The SEXP must be protected and valid.

§Panics

Panics if any index is out of bounds.

Source

pub unsafe fn set(&mut self, indices: [usize; NDIM], value: T)
where T: Copy,

Set an element by N-dimensional indices.

§Safety
  • The SEXP must be protected and valid
  • No other references to the data may exist
§Panics

Panics if any index is out of bounds.

Source§

impl<T: RNativeType> RArray<T, 2>

Source

pub unsafe fn nrow(&self) -> usize

Get the number of rows.

§Safety

The SEXP must be valid.

Source

pub unsafe fn ncol(&self) -> usize

Get the number of columns.

§Safety

The SEXP must be valid.

Source

pub unsafe fn get_rc(&self, row: usize, col: usize) -> T
where T: Copy,

Get an element by row and column.

§Safety

The SEXP must be protected and valid.

Source

pub unsafe fn set_rc(&mut self, row: usize, col: usize, value: T)
where T: Copy,

Set an element by row and column.

§Safety
  • The SEXP must be protected and valid
  • No other references to the data may exist
Source

pub unsafe fn column(&self, col: usize) -> &[T]

Get a column as a slice.

§Safety

The SEXP must be protected and valid.

Source

pub unsafe fn column_mut(&mut self, col: usize) -> &mut [T]

Get a mutable column as a slice.

Columns are contiguous in R’s column-major layout, so this returns a proper &mut [T] without any striding.

§Safety

The SEXP must be protected and valid.

§Panics

Panics if col >= ncol.

Source§

impl<T: RNativeType, const NDIM: usize> RArray<T, NDIM>

Source

fn get_attr_opt(&self, name: SEXP) -> Option<SEXP>

Get an arbitrary attribute by symbol (unchecked internal helper).

§Safety
  • The SEXP must be valid.
  • what must be a valid symbol SEXP.
Source

pub unsafe fn get_names(&self) -> Option<SEXP>

Get the names attribute if present.

Equivalent to R’s GET_NAMES(x).

§Safety

The SEXP must be valid.

Source

pub unsafe fn get_class(&self) -> Option<SEXP>

Get the class attribute if present.

Equivalent to R’s GET_CLASS(x).

§Safety

The SEXP must be valid.

Source

pub unsafe fn get_dimnames(&self) -> Option<SEXP>

Get the dimnames attribute if present.

Equivalent to R’s GET_DIMNAMES(x).

§Safety

The SEXP must be valid.

Source

pub unsafe fn get_rownames(&self) -> Option<SEXP>

Get row names from the dimnames attribute.

Equivalent to R’s GET_ROWNAMES(x) / Rf_GetRowNames(x).

§Safety

The SEXP must be valid.

Source

pub unsafe fn get_colnames(&self) -> Option<SEXP>

Get column names from the dimnames attribute.

Equivalent to R’s GET_COLNAMES(x) / Rf_GetColNames(x).

§Safety

The SEXP must be valid.

Source

pub unsafe fn set_names(&mut self, names: SEXP)

Set an arbitrary attribute by symbol (unchecked internal helper).

§Safety

Set the names attribute.

Equivalent to R’s SET_NAMES(x, n).

§Safety

The SEXP must be valid and not shared.

Source

pub unsafe fn set_class(&mut self, class: SEXP)

Set the class attribute.

Equivalent to R’s SET_CLASS(x, n).

§Safety

The SEXP must be valid and not shared.

Source

pub unsafe fn set_dimnames(&mut self, dimnames: SEXP)

Set the dimnames attribute.

Equivalent to R’s SET_DIMNAMES(x, n).

§Safety

The SEXP must be valid and not shared.

Source§

impl<T: RNativeType, const NDIM: usize> RArray<T, NDIM>

Source

pub unsafe fn new<F>(dims: [usize; NDIM], init: F) -> Self
where F: FnOnce(&mut [T]),

Allocate a new R array with the given dimensions.

The array is allocated. The closure receives a mutable slice to initialize the data.

§Safety

Must be called from the R main thread (or via routed FFI). The returned RArray holds an unprotected SEXP - caller must protect.

§Example
let matrix = unsafe {
    RMatrix::<f64>::new([3, 4], |slice| {
        for (i, v) in slice.iter_mut().enumerate() {
            *v = i as f64;
        }
    })
};
Source

pub unsafe fn zeros(dims: [usize; NDIM]) -> Self
where T: Default + Copy,

Allocate a new R array filled with zeros.

§Safety

Must be called from the R main thread (or via routed FFI). The returned RArray holds an unprotected SEXP - caller must protect.

Source§

impl<const NDIM: usize> RArray<i8, NDIM>

Source

pub unsafe fn to_vec_coerced(&self) -> Vec<i8>

Copy array data to an owned Vec, coercing from the R native type.

§Safety

The SEXP must be protected and valid.

§Panics

Panics if any element fails to coerce (shouldn’t happen if constructed via TryFromSexp).

Source§

impl<const NDIM: usize> RArray<i16, NDIM>

Source

pub unsafe fn to_vec_coerced(&self) -> Vec<i16>

Copy array data to an owned Vec, coercing from the R native type.

§Safety

The SEXP must be protected and valid.

§Panics

Panics if any element fails to coerce (shouldn’t happen if constructed via TryFromSexp).

Source§

impl<const NDIM: usize> RArray<i64, NDIM>

Source

pub unsafe fn to_vec_coerced(&self) -> Vec<i64>

Copy array data to an owned Vec, coercing from the R native type.

§Safety

The SEXP must be protected and valid.

§Panics

Panics if any element fails to coerce (shouldn’t happen if constructed via TryFromSexp).

Source§

impl<const NDIM: usize> RArray<isize, NDIM>

Source

pub unsafe fn to_vec_coerced(&self) -> Vec<isize>

Copy array data to an owned Vec, coercing from the R native type.

§Safety

The SEXP must be protected and valid.

§Panics

Panics if any element fails to coerce (shouldn’t happen if constructed via TryFromSexp).

Source§

impl<const NDIM: usize> RArray<u16, NDIM>

Source

pub unsafe fn to_vec_coerced(&self) -> Vec<u16>

Copy array data to an owned Vec, coercing from the R native type.

§Safety

The SEXP must be protected and valid.

§Panics

Panics if any element fails to coerce (shouldn’t happen if constructed via TryFromSexp).

Source§

impl<const NDIM: usize> RArray<u32, NDIM>

Source

pub unsafe fn to_vec_coerced(&self) -> Vec<u32>

Copy array data to an owned Vec, coercing from the R native type.

§Safety

The SEXP must be protected and valid.

§Panics

Panics if any element fails to coerce (shouldn’t happen if constructed via TryFromSexp).

Source§

impl<const NDIM: usize> RArray<u64, NDIM>

Source

pub unsafe fn to_vec_coerced(&self) -> Vec<u64>

Copy array data to an owned Vec, coercing from the R native type.

§Safety

The SEXP must be protected and valid.

§Panics

Panics if any element fails to coerce (shouldn’t happen if constructed via TryFromSexp).

Source§

impl<const NDIM: usize> RArray<usize, NDIM>

Source

pub unsafe fn to_vec_coerced(&self) -> Vec<usize>

Copy array data to an owned Vec, coercing from the R native type.

§Safety

The SEXP must be protected and valid.

§Panics

Panics if any element fails to coerce (shouldn’t happen if constructed via TryFromSexp).

Source§

impl<const NDIM: usize> RArray<f32, NDIM>

Source

pub unsafe fn to_vec_coerced(&self) -> Vec<f32>

Copy array data to an owned Vec, coercing from the R native type.

§Safety

The SEXP must be protected and valid.

§Panics

Panics if any element fails to coerce (shouldn’t happen if constructed via TryFromSexp).

Source§

impl<const NDIM: usize> RArray<bool, NDIM>

Source

pub unsafe fn to_vec_coerced(&self) -> Vec<bool>

Copy array data to an owned Vec, coercing from the R native type.

§Safety

The SEXP must be protected and valid.

§Panics

Panics if any element fails to coerce (shouldn’t happen if constructed via TryFromSexp).

Trait Implementations§

Source§

impl<T: Clone, const NDIM: usize> Clone for RArray<T, NDIM>

Source§

fn clone(&self) -> RArray<T, NDIM>

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

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

Performs copy-assignment from source. Read more
Source§

impl<T: RNativeType, const NDIM: usize> Debug for RArray<T, NDIM>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<T: RNativeType, const NDIM: usize> IntoR for RArray<T, NDIM>

Source§

type Error = Infallible

The error type for fallible conversions. Read more
Source§

fn try_into_sexp(self) -> Result<SEXP, Self::Error>

Try to convert this value to an R SEXP. Read more
Source§

unsafe fn try_into_sexp_unchecked(self) -> Result<SEXP, Self::Error>

Try to convert to SEXP without thread safety checks. Read more
Source§

fn into_sexp(self) -> SEXP

Convert this value to an R SEXP, panicking on error. Read more
Source§

unsafe fn into_sexp_unchecked(self) -> SEXP

Convert to SEXP without thread safety checks, panicking on error. Read more
Source§

impl<T: RNativeType, const NDIM: usize> TryFromSexp for RArray<T, NDIM>

Source§

type Error = SexpError

The error type returned when conversion fails.
Source§

fn try_from_sexp(sexp: SEXP) -> Result<Self, Self::Error>

Attempt to convert an R SEXP to this Rust type. Read more
Source§

unsafe fn try_from_sexp_unchecked(sexp: SEXP) -> Result<Self, Self::Error>

Convert from SEXP without thread safety checks. Read more
Source§

impl<const NDIM: usize> TryFromSexp for RArray<bool, NDIM>

Source§

type Error = SexpError

The error type returned when conversion fails.
Source§

fn try_from_sexp(sexp: SEXP) -> Result<Self, Self::Error>

Attempt to convert an R SEXP to this Rust type. Read more
Source§

unsafe fn try_from_sexp_unchecked(sexp: SEXP) -> Result<Self, Self::Error>

Convert from SEXP without thread safety checks. Read more
Source§

impl<const NDIM: usize> TryFromSexp for RArray<f32, NDIM>

Source§

type Error = SexpError

The error type returned when conversion fails.
Source§

fn try_from_sexp(sexp: SEXP) -> Result<Self, Self::Error>

Attempt to convert an R SEXP to this Rust type. Read more
Source§

unsafe fn try_from_sexp_unchecked(sexp: SEXP) -> Result<Self, Self::Error>

Convert from SEXP without thread safety checks. Read more
Source§

impl<const NDIM: usize> TryFromSexp for RArray<i16, NDIM>

Source§

type Error = SexpError

The error type returned when conversion fails.
Source§

fn try_from_sexp(sexp: SEXP) -> Result<Self, Self::Error>

Attempt to convert an R SEXP to this Rust type. Read more
Source§

unsafe fn try_from_sexp_unchecked(sexp: SEXP) -> Result<Self, Self::Error>

Convert from SEXP without thread safety checks. Read more
Source§

impl<const NDIM: usize> TryFromSexp for RArray<i64, NDIM>

Source§

type Error = SexpError

The error type returned when conversion fails.
Source§

fn try_from_sexp(sexp: SEXP) -> Result<Self, Self::Error>

Attempt to convert an R SEXP to this Rust type. Read more
Source§

unsafe fn try_from_sexp_unchecked(sexp: SEXP) -> Result<Self, Self::Error>

Convert from SEXP without thread safety checks. Read more
Source§

impl<const NDIM: usize> TryFromSexp for RArray<i8, NDIM>

Source§

type Error = SexpError

The error type returned when conversion fails.
Source§

fn try_from_sexp(sexp: SEXP) -> Result<Self, Self::Error>

Attempt to convert an R SEXP to this Rust type. Read more
Source§

unsafe fn try_from_sexp_unchecked(sexp: SEXP) -> Result<Self, Self::Error>

Convert from SEXP without thread safety checks. Read more
Source§

impl<const NDIM: usize> TryFromSexp for RArray<isize, NDIM>

Source§

type Error = SexpError

The error type returned when conversion fails.
Source§

fn try_from_sexp(sexp: SEXP) -> Result<Self, Self::Error>

Attempt to convert an R SEXP to this Rust type. Read more
Source§

unsafe fn try_from_sexp_unchecked(sexp: SEXP) -> Result<Self, Self::Error>

Convert from SEXP without thread safety checks. Read more
Source§

impl<const NDIM: usize> TryFromSexp for RArray<u16, NDIM>

Source§

type Error = SexpError

The error type returned when conversion fails.
Source§

fn try_from_sexp(sexp: SEXP) -> Result<Self, Self::Error>

Attempt to convert an R SEXP to this Rust type. Read more
Source§

unsafe fn try_from_sexp_unchecked(sexp: SEXP) -> Result<Self, Self::Error>

Convert from SEXP without thread safety checks. Read more
Source§

impl<const NDIM: usize> TryFromSexp for RArray<u32, NDIM>

Source§

type Error = SexpError

The error type returned when conversion fails.
Source§

fn try_from_sexp(sexp: SEXP) -> Result<Self, Self::Error>

Attempt to convert an R SEXP to this Rust type. Read more
Source§

unsafe fn try_from_sexp_unchecked(sexp: SEXP) -> Result<Self, Self::Error>

Convert from SEXP without thread safety checks. Read more
Source§

impl<const NDIM: usize> TryFromSexp for RArray<u64, NDIM>

Source§

type Error = SexpError

The error type returned when conversion fails.
Source§

fn try_from_sexp(sexp: SEXP) -> Result<Self, Self::Error>

Attempt to convert an R SEXP to this Rust type. Read more
Source§

unsafe fn try_from_sexp_unchecked(sexp: SEXP) -> Result<Self, Self::Error>

Convert from SEXP without thread safety checks. Read more
Source§

impl<const NDIM: usize> TryFromSexp for RArray<usize, NDIM>

Source§

type Error = SexpError

The error type returned when conversion fails.
Source§

fn try_from_sexp(sexp: SEXP) -> Result<Self, Self::Error>

Attempt to convert an R SEXP to this Rust type. Read more
Source§

unsafe fn try_from_sexp_unchecked(sexp: SEXP) -> Result<Self, Self::Error>

Convert from SEXP without thread safety checks. Read more
Source§

impl<T: Copy, const NDIM: usize> Copy for RArray<T, NDIM>

Auto Trait Implementations§

§

impl<T, const NDIM: usize> Freeze for RArray<T, NDIM>

§

impl<T, const NDIM: usize> RefUnwindSafe for RArray<T, NDIM>
where T: RefUnwindSafe,

§

impl<T, const NDIM: usize> !Send for RArray<T, NDIM>

§

impl<T, const NDIM: usize> !Sync for RArray<T, NDIM>

§

impl<T, const NDIM: usize> Unpin for RArray<T, NDIM>

§

impl<T, const NDIM: usize> UnsafeUnpin for RArray<T, NDIM>

§

impl<T, const NDIM: usize> UnwindSafe for RArray<T, NDIM>
where T: RefUnwindSafe,

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, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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> RClone for T
where T: Clone,

Source§

fn clone(&self) -> T

Create a deep copy of this value.
Source§

impl<T> RCopy for T
where T: Copy,

Source§

fn copy(&self) -> T

Create a bitwise copy of this value. Read more
Source§

fn is_copy(&self) -> bool

Check if this type implements Copy. Read more
Source§

impl<T> RDebug for T
where T: Debug,

Source§

fn debug_str(&self) -> String

Get a compact debug string representation.
Source§

fn debug_str_pretty(&self) -> String

Get a pretty-printed debug string with indentation.
Source§

impl<T> SizeEq<Cell<T>> for T
where T: ?Sized,

Source§

type CastFrom = CastFromWrapper

Source§

impl<T> SizeEq<ManuallyDrop<T>> for T
where T: ?Sized,

Source§

type CastFrom = CastFromWrapper

Source§

impl<T> SizeEq<MaybeUninit<T>> for T

Source§

impl<T> SizeEq<ReadOnly<T>> for T
where T: ?Sized,

Source§

type CastFrom = CastFromReadOnly

Source§

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

Source§

impl<T> SizeEq<Unalign<T>> for T

Source§

type CastFrom = CastFromWrapper

Source§

impl<T> SizeEq<UnsafeCell<T>> for T
where T: ?Sized,

Source§

type CastFrom = CastFromWrapper

Source§

impl<T> SizeEq<Wrapping<T>> for T

Source§

type CastFrom = CastFromWrapper

Source§

impl<T> SizedTypeProperties for T

Source§

#[doc(hidden)]
const SIZE: usize = _

🔬This is a nightly-only experimental API. (sized_type_properties)
Source§

#[doc(hidden)]
const ALIGN: usize = _

🔬This is a nightly-only experimental API. (sized_type_properties)
Source§

#[doc(hidden)]
const ALIGNMENT: Alignment = _

🔬This is a nightly-only experimental API. (ptr_alignment_type)
Source§

#[doc(hidden)]
const IS_ZST: bool = _

🔬This is a nightly-only experimental API. (sized_type_properties)
true if this type requires no storage. false if its size is greater than zero. Read more
Source§

#[doc(hidden)]
const LAYOUT: Layout = _

🔬This is a nightly-only experimental API. (sized_type_properties)
Source§

#[doc(hidden)]
const MAX_SLICE_LEN: usize = _

🔬This is a nightly-only experimental API. (sized_type_properties)
The largest safe length for a [Self]. Read more
Source§

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

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. 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.
Source§

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> InvariantsEq<ManuallyDrop<T>> for T
where T: ?Sized,

Source§

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

Source§

impl<T> InvariantsEq<Unalign<T>> for T

Source§

impl<T> InvariantsEq<Wrapping<T>> for T

Source§

impl<Src, Dst, A, SV, DV, R> MutationCompatible<Src, A, SV, DV, (BecauseRead, R)> for Dst
where A: Aliasing, SV: Validity, DV: Validity, Src: Read<A, R> + ?Sized, Dst: Read<A, R> + ?Sized,

Source§

impl<Src, Dst, A, SV, DV> MutationCompatible<Src, A, SV, DV, BecauseInvariantsEq> for Dst
where A: Aliasing, SV: Validity, DV: Validity, Src: TransmuteFrom<Dst, DV, SV> + ?Sized, Dst: TransmuteFrom<Src, SV, DV> + InvariantsEq<Src> + ?Sized,

Source§

impl<T> Printable for T
where T: Copy + Debug,

Source§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T> TransmuteFrom<Cell<T>, Valid, Valid> for T
where T: ?Sized,

Source§

impl<T> TransmuteFrom<ManuallyDrop<T>, Valid, Valid> for T
where T: ?Sized,

Source§

impl<T> TransmuteFrom<ReadOnly<T>, Valid, Valid> for T
where T: ?Sized,

Source§

impl<Src, Dst> TransmuteFrom<Src, Initialized, Initialized> for Dst
where Src: ?Sized, Dst: ?Sized,

Source§

impl<Src, Dst, V> TransmuteFrom<Src, V, Uninit> for Dst
where V: Validity, Src: ?Sized, Dst: ?Sized,

Source§

impl<Src, Dst> TransmuteFrom<Src, Valid, Initialized> for Dst
where Src: IntoBytes + ?Sized, Dst: ?Sized,

Source§

impl<T> TransmuteFrom<Unalign<T>, Valid, Valid> for T

Source§

impl<T> TransmuteFrom<UnsafeCell<T>, Valid, Valid> for T
where T: ?Sized,

Source§

impl<T> TransmuteFrom<Wrapping<T>, Valid, Valid> for T

Source§

impl<Src, Dst, A, SV, DV, C, R> TransmuteFromPtr<Src, A, SV, DV, C, R> for Dst
where A: Aliasing, SV: Validity, DV: Validity, C: CastExact<Src, Dst>, Dst: TransmuteFrom<Src, SV, DV> + TryTransmuteFromPtr<Src, A, SV, DV, C, R> + ?Sized, Src: ?Sized,

Source§

impl<Src, Dst, SV, DV, A, C, R> TryTransmuteFromPtr<Src, A, SV, DV, C, (BecauseMutationCompatible, R)> for Dst
where A: Aliasing, SV: Validity, DV: Validity, Src: TransmuteFrom<Dst, DV, SV> + ?Sized, Dst: MutationCompatible<Src, A, SV, DV, R> + ?Sized, C: CastExact<Src, Dst>,

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: 8 bytes