Struct bevy::ecs::ptr::ConstNonNull

pub struct ConstNonNull<T>(/* private fields */)
where
    T: ?Sized;
Expand description

A newtype around NonNull that only allows conversion to read-only borrows or pointers.

This type can be thought of as the *const T to NonNull<T>’s *mut T.

Implementations§

§

impl<T> ConstNonNull<T>
where T: ?Sized,

pub fn new(ptr: *const T) -> Option<ConstNonNull<T>>

Creates a new ConstNonNull if ptr is non-null.

§Examples
use bevy_ptr::ConstNonNull;

let x = 0u32;
let ptr = ConstNonNull::<u32>::new(&x as *const _).expect("ptr is null!");

if let Some(ptr) = ConstNonNull::<u32>::new(std::ptr::null()) {
    unreachable!();
}

pub const unsafe fn new_unchecked(ptr: *const T) -> ConstNonNull<T>

Creates a new ConstNonNull.

§Safety

ptr must be non-null.

§Examples
use bevy_ptr::ConstNonNull;

let x = 0u32;
let ptr = unsafe { ConstNonNull::new_unchecked(&x as *const _) };

Incorrect usage of this function:

use bevy_ptr::ConstNonNull;

// NEVER DO THAT!!! This is undefined behavior. ⚠️
let ptr = unsafe { ConstNonNull::<u32>::new_unchecked(std::ptr::null()) };

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

Returns a shared reference to the value.

§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 bevy_ptr::ConstNonNull;

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

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

Trait Implementations§

§

impl<'a, T> From<&'a T> for ConstNonNull<T>
where T: ?Sized,

§

fn from(value: &'a T) -> ConstNonNull<T>

Converts to this type from the input type.
§

impl<'a, T> From<&'a mut T> for ConstNonNull<T>
where T: ?Sized,

§

fn from(value: &'a mut T) -> ConstNonNull<T>

Converts to this type from the input type.
§

impl<T> From<NonNull<T>> for ConstNonNull<T>
where T: ?Sized,

§

fn from(value: NonNull<T>) -> ConstNonNull<T>

Converts to this type from the input type.

Auto Trait Implementations§

§

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

§

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

§

impl<T> !Send for ConstNonNull<T>

§

impl<T> !Sync for ConstNonNull<T>

§

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

§

impl<T> UnwindSafe for ConstNonNull<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
§

impl<T, U> AsBindGroupShaderType<U> for T
where U: ShaderType, &'a T: for<'a> Into<U>,

§

fn as_bind_group_shader_type(&self, _images: &RenderAssets<GpuImage>) -> U

Return the T ShaderType for self. When used in AsBindGroup derives, it is safe to assume that all images in self exist.
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
§

impl<T> Downcast<T> for T

§

fn downcast(&self) -> &T

§

impl<T> Downcast for T
where T: Any,

§

fn into_any(self: Box<T>) -> Box<dyn Any>

Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.
§

fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>

Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait.
§

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

Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s.
§

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

Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<S> FromSample<S> for S

§

fn from_sample_(s: S) -> S

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. 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> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
§

impl<F, T> IntoSample<T> for F
where T: FromSample<F>,

§

fn into_sample(self) -> T

§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
§

impl<T, U> ToSample<U> for T
where U: FromSample<T>,

§

fn to_sample_(self) -> U

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

impl<T> Upcast<T> for T

§

fn upcast(&self) -> Option<&T>

§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
§

impl<S, T> Duplex<S> for T
where T: FromSample<S> + ToSample<S>,