Struct autocxx::CppMutRef

source ·
#[repr(transparent)]
pub struct CppMutRef<'a, T: ?Sized> { /* private fields */ }
Expand description

A C++ non-const reference. These are different from Rust’s &mut T in that several C++ references can exist to the same underlying data (“aliasing”) and that’s not permitted for regular Rust references.

See CppRef for details on safety, usage models and implementation.

You can convert this to a CppRef using the std::convert::Into trait.

Implementations§

source§

impl<'a, T: ?Sized> CppMutRef<'a, T>

source

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

Retrieve the underlying C++ pointer.

source

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

Get a regular Rust mutable reference out of this C++ reference.

Safety

Callers must guarantee that the referent is not modified by any other C++ or Rust code while the returned reference exists. Callers must also guarantee that no other Rust reference is created to the referent while the returned reference exists.

Callers must also be sure that the C++ reference is properly aligned, not null, pointing to valid data, etc.

source

pub fn from_ptr(ptr: *mut T) -> Self

Create a C++ reference from a raw pointer.

source

pub fn lifetime_cast(&mut self) -> PhantomReferentMut<T>

Extend the lifetime of the returned reference beyond normal Rust borrow checker rules. See CppRef::lifetime_cast.

Trait Implementations§

source§

impl<'a, T: ?Sized> AsCppRef<T> for CppMutRef<'a, T>

source§

fn as_cpp_ref(&self) -> CppRef<'_, T>

Returns a reference which obeys C++ reference semantics
source§

impl<'a, T: ?Sized> Clone for CppMutRef<'a, 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<'a, T: ?Sized> Deref for CppMutRef<'a, T>

§

type Target = *const T

The resulting type after dereferencing.
source§

fn deref(&self) -> &Self::Target

Dereferences the value.
source§

impl<'a, T> From<CppMutRef<'a, T>> for CppRef<'a, T>

source§

fn from(mutable: CppMutRef<'a, T>) -> Self

Converts to this type from the input type.
source§

impl<T: ?Sized + Unsize<U>, U: ?Sized> DispatchFromDyn<CppMutRef<'_, U>> for CppMutRef<'_, T>

Auto Trait Implementations§

§

impl<'a, T: ?Sized> RefUnwindSafe for CppMutRef<'a, T>where T: RefUnwindSafe,

§

impl<'a, T> !Send for CppMutRef<'a, T>

§

impl<'a, T> !Sync for CppMutRef<'a, T>

§

impl<'a, T: ?Sized> Unpin for CppMutRef<'a, T>

§

impl<'a, T: ?Sized> UnwindSafe for CppMutRef<'a, T>where T: RefUnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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> ToOwned for Twhere T: Clone,

§

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