Struct safer_ffi::ptr::NonNullOwned

source ·
#[repr(transparent)]
pub struct NonNullOwned<T>(pub NonNull<T>, pub PhantomData<T>);

Tuple Fields§

§0: NonNull<T>§1: PhantomData<T>

Implementations§

source§

impl<T> NonNullOwned<T>

source

pub fn as_ptr(&self) -> *const T

source

pub fn cast<U>(self: NonNullOwned<T>) -> NonNullOwned<U>

source§

impl<T> NonNullOwned<T>

source

pub fn as_mut_ptr(&mut self) -> *mut T

source

pub fn copy(self: &mut NonNullOwned<T>) -> NonNullOwned<T>

source§

impl<__> NonNullOwned<__>

source

pub unsafe fn dealloc<T>(self)

Available on crate feature alloc only.
source

pub unsafe fn drop_in_place_and_dealloc<T>(self)

Available on crate feature alloc only.
source

pub unsafe fn drop_in_place<T>(self)

Methods from Deref<Target = NonNull<T>>§

1.25.0 · source

pub unsafe fn as_ref<'a>(&self) -> &'a T

Returns a shared reference to the value. If the value may be uninitialized, as_uninit_ref must be used instead.

For the mutable counterpart see as_mut.

§Safety

When calling this method, you have to ensure that all of the following is true:

  • The pointer must be properly aligned.

  • It must be “dereferenceable” in the sense defined in the module documentation.

  • The pointer must point to an initialized instance of T.

  • You must enforce Rust’s aliasing rules, since the returned lifetime 'a is arbitrarily chosen and does not necessarily reflect the actual lifetime of the data. In particular, while this reference exists, the memory the pointer points to must not get mutated (except inside UnsafeCell).

This applies even if the result of this method is unused! (The part about being initialized is not yet fully decided, but until it is, the only safe approach is to ensure that they are indeed initialized.)

§Examples
use std::ptr::NonNull;

let mut x = 0u32;
let ptr = NonNull::new(&mut x as *mut _).expect("ptr is null!");

let ref_x = unsafe { ptr.as_ref() };
println!("{ref_x}");
1.25.0 · source

pub unsafe fn as_mut<'a>(&mut self) -> &'a mut T

Returns a unique reference to the value. If the value may be uninitialized, as_uninit_mut must be used instead.

For the shared counterpart see as_ref.

§Safety

When calling this method, you have to ensure that all of the following is true:

  • The pointer must be properly aligned.

  • It must be “dereferenceable” in the sense defined in the module documentation.

  • The pointer must point to an initialized instance of T.

  • You must enforce Rust’s aliasing rules, since the returned lifetime 'a is arbitrarily chosen and does not necessarily reflect the actual lifetime of the data. In particular, while this reference exists, the memory the pointer points to must not get accessed (read or written) through any other pointer.

This applies even if the result of this method is unused! (The part about being initialized is not yet fully decided, but until it is, the only safe approach is to ensure that they are indeed initialized.)

§Examples
use std::ptr::NonNull;

let mut x = 0u32;
let mut ptr = NonNull::new(&mut x).expect("null pointer");

let x_ref = unsafe { ptr.as_mut() };
assert_eq!(*x_ref, 0);
*x_ref += 2;
assert_eq!(*x_ref, 2);

Trait Implementations§

source§

impl<T> Debug for NonNullOwned<T>

source§

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

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

impl<T> Deref for NonNullOwned<T>

§

type Target = NonNull<T>

The resulting type after dereferencing.
source§

fn deref(self: &NonNullOwned<T>) -> &NonNull<T>

Dereferences the value.
source§

impl<T> DerefMut for NonNullOwned<T>

source§

fn deref_mut(self: &mut NonNullOwned<T>) -> &mut NonNull<T>

Mutably dereferences the value.
source§

impl<T> From<NonNull<T>> for NonNullOwned<T>

source§

fn from(it: NonNull<T>) -> Self

Converts to this type from the input type.
source§

impl<T: ReprC> ReprC for NonNullOwned<T>

§

type CLayout = *mut <T as ReprC>::CLayout

The CType having the same layout as Self.
source§

fn is_valid(it: &*mut T::CLayout) -> bool

Sanity checks that can be performed on an instance of the CType layout. Read more

Auto Trait Implementations§

§

impl<T> Freeze for NonNullOwned<T>

§

impl<T> RefUnwindSafe for NonNullOwned<T>
where T: RefUnwindSafe,

§

impl<T> !Send for NonNullOwned<T>

§

impl<T> !Sync for NonNullOwned<T>

§

impl<T> Unpin for NonNullOwned<T>
where T: Unpin,

§

impl<T> UnwindSafe for NonNullOwned<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> CompatExt for T

source§

fn compat(self) -> Compat<T>

Applies the Compat adapter by value. Read more
source§

fn compat_ref(&self) -> Compat<&T>

Applies the Compat adapter by shared reference. Read more
source§

fn compat_mut(&mut self) -> Compat<&mut T>

Applies the Compat adapter by mutable reference. Read more
source§

impl<T> ConcreteReprC for T
where <T as ReprC>::CLayout: CType<OPAQUE_KIND = Concrete>, T: ReprC + ?Sized,

source§

impl<T> FitForCBox for T

§

type CBoxWrapped = Box_<T>

Available on crate feature alloc only.
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> ManuallyDropMut for T

§

type Ret = ManuallyDrop<T>

source§

fn manually_drop_mut<'__>(&'__ mut self) -> &'__ mut ManuallyDrop<T>

source§

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

§

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

§

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<T> UpcastAny for T
where T: 'static,

source§

fn upcast_any(&self) -> &(dyn Any + 'static)

Available on crate feature headers only.