rkyv

Struct Place

Source
pub struct Place<T: ?Sized> { /* private fields */ }
Expand description

A place to write a T paired with its position in the output buffer.

Implementations§

Source§

impl<T: ?Sized> Place<T>

Source

pub unsafe fn new_unchecked(pos: usize, ptr: *mut T) -> Self

Creates a new Place from an output pointer.

§Safety

ptr must be properly aligned, dereferenceable, and all of its bytes must be initialized.

Source

pub unsafe fn from_field_unchecked<U: ?Sized>( parent: Place<U>, ptr: *mut T, ) -> Self

Creates a new Place from a parent pointer and the field the place points to.

§Safety
  • ptr must point to a field of parent
  • ptr must be properly aligned, dereferenceable, and all of its bytes must be initialized
Source

pub fn pos(&self) -> usize

Returns the position of the place.

Source

pub unsafe fn ptr(&self) -> *mut T

Returns the pointer associated with this place.

§Safety

Uninitialized bytes must not be written to the returned pointer.

Source

pub unsafe fn write_unchecked(&self, value: T)
where T: Sized,

Writes the provided value to this place.

§Safety

value must not have any uninitialized bytes (e.g. padding).

Source

pub fn write(&self, value: T)
where T: NoUndef + Sized,

Writes the provided value to this place.

Source

pub unsafe fn cast_unchecked<U>(&self) -> Place<U>
where T: Sized,

Returns this place casted to the given type.

§Safety

This place must point to a valid U.

Source

pub fn as_slice(&self) -> &[u8]
where T: LayoutRaw,

Returns a slice of the bytes this place points to.

Source§

impl<T> Place<[T]>

Source

pub unsafe fn index(&self, i: usize) -> Place<T>

Gets a Place to the i-th element of the slice.

§Safety

i must be in-bounds for the slice pointed to by this place.

Source§

impl<T, const N: usize> Place<[T; N]>

Source

pub unsafe fn index(&self, i: usize) -> Place<T>

Gets a Place to the i-th element of the array.

§Safety

i must be in-bounds for the array pointed to by this place.

Trait Implementations§

Source§

impl<T: ?Sized> Clone for Place<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: ?Sized> Destructure for Place<T>

Source§

type Underlying = T

The underlying type that is destructured.
Source§

type Destructuring = Borrow

The type of destructuring to perform.
Source§

fn underlying(&mut self) -> *mut Self::Underlying

Returns a mutable pointer to the underlying type.
Source§

impl<T: ?Sized, U: ?Sized> Restructure<U> for Place<T>

Source§

type Restructured = Place<U>

The restructured version of this type.
Source§

unsafe fn restructure(&self, ptr: *mut U) -> Self::Restructured

Restructures a pointer to this type into the target type. Read more
Source§

impl<T: ?Sized> Copy for Place<T>

Auto Trait Implementations§

§

impl<T> Freeze for Place<T>
where T: ?Sized,

§

impl<T> RefUnwindSafe for Place<T>
where T: RefUnwindSafe + ?Sized,

§

impl<T> !Send for Place<T>

§

impl<T> !Sync for Place<T>

§

impl<T> Unpin for Place<T>
where T: ?Sized,

§

impl<T> UnwindSafe for Place<T>
where T: RefUnwindSafe + ?Sized,

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

Source§

type ArchivedMetadata = ()

The archived version of the pointer metadata for this type.
Source§

fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata

Converts some archived metadata to the pointer metadata for itself.
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, 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> LayoutRaw for T

Source§

fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>

Returns the layout of the type.
Source§

impl<T, N1, N2> Niching<NichedOption<T, N1>> for N2
where T: SharedNiching<N1, N2>, N1: Niching<T>, N2: Niching<T>,

Source§

unsafe fn is_niched(niched: *const NichedOption<T, N1>) -> bool

Returns whether the given value has been niched. Read more
Source§

fn resolve_niched(out: Place<NichedOption<T, N1>>)

Writes data to out indicating that a T is niched.
Source§

impl<T> Pointee for T

Source§

type Metadata = ()

The metadata type for pointers and references to this type.
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.