pub struct MovePtr<'a, T> { /* private fields */ }
Expand description

A move pointer, which allows moving the value from the reference, consuming it in the process.

If MovePtr::into_inner isn’t called, this drops the referenced value when it’s dropped

Safety

This is unsafe to construct since the user must ensure that the original owner of the value never accesses it again.

Motivation

MovePtr was created as a way to pass self by value to ffi-safe trait object methods, since one can’t simply pass self by value(because the type is erased).

Examples

Using OwnedPointer::in_move_ptr

This is how one can use MovePtr without unsafe.

This simply moves the contents of an RBox<T> into a Box<T>.

use abi_stable::{
    pointer_trait::OwnedPointer, sabi_types::MovePtr, std_types::RBox,
};

fn move_rbox_to_box<T>(rbox: RBox<T>) -> Box<T> {
    rbox.in_move_ptr(|move_ptr| MovePtr::into_box(move_ptr))
}

assert_eq!(move_rbox_to_box(RBox::new(99)), Box::new(99));

assert_eq!(move_rbox_to_box(RBox::new(())), Box::new(()));

assert_eq!(
    move_rbox_to_box(RBox::new(String::from("SHIT"))),
    Box::new(String::from("SHIT"))
);

Using the (unsafe) MovePtr::new

This is (sort of) how RBox<T> implements moving the T it owns out of its allocation

This is basically what OwnedPointer::{with_move_ptr,in_move_ptr} do.

use abi_stable::{
    pointer_trait::{AsMutPtr, OwnedPointer},
    sabi_types::MovePtr,
    std_types::RBox,
};

use std::mem::ManuallyDrop;

let rbox = RBox::new(0x100);

let second_rbox;

unsafe {
    let mut rbox = ManuallyDrop::new(rbox);

    let move_ptr = unsafe { MovePtr::from_rmut(rbox.as_rmut()) };
    second_rbox = RBox::from_move_ptr(move_ptr);

    OwnedPointer::drop_allocation(&mut rbox);
}

assert_eq!(second_rbox, RBox::new(0x100));

Implementations§

source§

impl<'a, T> MovePtr<'a, T>

source

pub unsafe fn new(ptr: &'a mut T) -> Self

Constructs this move pointer from a mutable reference, moving the value out of the reference.

Safety

Callers must ensure that the original owner of the value won’t access the moved-out value anymore.

Example
use abi_stable::sabi_types::MovePtr;

use std::mem::ManuallyDrop;

let mut manual = ManuallyDrop::new(String::from("hello"));

let moveptr = unsafe { MovePtr::new(&mut *manual) };

drop(moveptr); // moveptr drops the String here.
source

pub const unsafe fn from_rmut(ptr: RMut<'a, T>) -> Self

Constructs this move pointer from an RMut, moving the value out of the reference.

Safety

Callers must ensure that the original owner of the value won’t access the moved-out value anymore.

Example
use abi_stable::{
    pointer_trait::AsMutPtr, sabi_types::MovePtr, std_types::RString,
    utils::manuallydrop_as_rmut,
};

use std::mem::ManuallyDrop;

let mut mdrop = ManuallyDrop::new(RString::from("hello"));

// safety: `mdrop` is never accessed again
let moveptr = unsafe { MovePtr::from_rmut(manuallydrop_as_rmut(&mut mdrop)) };
assert_eq!(*moveptr, "hello");

let string: RString = MovePtr::into_inner(moveptr);
assert_eq!(string, "hello");
source

pub const unsafe fn from_raw(ptr: *mut T) -> Self

Constructs this move pointer from a raw pointer, moving the value out of it.

Safety

Callers must ensure that the original owner of the value won’t access the moved-out value anymore.

Because this takes a mutable pointer, the lifetime of this MovePtr is unbounded. You must ensure that it’s not used for longer than the lifetime of the pointed-to value.

Example
use abi_stable::{
    pointer_trait::AsMutPtr, rvec, sabi_types::MovePtr, std_types::RVec,
    utils::manuallydrop_as_raw_mut,
};

use std::mem::ManuallyDrop;

let mut mdrop = ManuallyDrop::new(rvec![3, 5, 8]);

// safety: `mdrop` is never accessed again
let moveptr = unsafe { MovePtr::from_raw(manuallydrop_as_raw_mut(&mut mdrop)) };
assert_eq!(moveptr[..], [3, 5, 8]);

let vector: RVec<u8> = MovePtr::into_inner(moveptr);
assert_eq!(vector[..], [3, 5, 8]);
source

pub const fn as_ptr(this: &Self) -> *const T

Gets a raw pointer to the value being moved.

Example
use abi_stable::{
    pointer_trait::OwnedPointer, sabi_types::MovePtr, std_types::RBox,
};

let rbox = RBox::new(String::from("NOPE"));
let address_rbox = &*rbox as *const String as usize;

rbox.in_move_ptr(|move_ptr| {
    assert_eq!(address_rbox, MovePtr::as_ptr(&move_ptr) as usize);
});
source

pub fn as_mut_ptr(this: &mut Self) -> *mut T

Gets a raw pointer to the value being moved.

Example
Example
use abi_stable::{
    pointer_trait::OwnedPointer, sabi_types::MovePtr, std_types::RBox,
};

let rbox = RBox::new(String::from("NOPE"));
let address_rbox = &*rbox as *const String as usize;

rbox.in_move_ptr(|mut move_ptr| {
    assert_eq!(address_rbox, MovePtr::as_mut_ptr(&mut move_ptr) as usize);
});
source

pub const fn into_raw(this: Self) -> *mut T

Converts this MovePtr into a raw pointer, which must be moved from before the pointed to value is deallocated, otherwise the value will be leaked.

Example
use abi_stable::{
    pointer_trait::OwnedPointer, sabi_types::MovePtr, std_types::RBox,
};

let rbox = RBox::new(String::from("NOPE"));

let string =
    rbox.in_move_ptr(|move_ptr| unsafe { MovePtr::into_raw(move_ptr).read() });

assert_eq!(string, String::from("NOPE"));
source

pub fn into_box(this: Self) -> Box<T>

Moves the value into a new Box<T>

Example
use abi_stable::{
    pointer_trait::OwnedPointer, sabi_types::MovePtr, std_types::RBox,
};

let rbox = RBox::new(String::from("WHAT!!!"));

let boxed = rbox.in_move_ptr(|move_ptr| unsafe { MovePtr::into_box(move_ptr) });

assert_eq!(boxed, Box::new(String::from("WHAT!!!")));
source

pub fn into_rbox(this: Self) -> RBox<T>

Moves the value into a new RBox<T>

Example
use abi_stable::{
    pointer_trait::OwnedPointer, sabi_types::MovePtr, std_types::RBox,
};

let rbox = RBox::new(String::from("WHAT!!!"));

let boxed = rbox.in_move_ptr(|move_ptr| unsafe { MovePtr::into_rbox(move_ptr) });

assert_eq!(boxed, RBox::new(String::from("WHAT!!!")));
source

pub fn into_inner(this: Self) -> T

Moves the value out of the reference

Example
use abi_stable::{
    pointer_trait::OwnedPointer, sabi_types::MovePtr, std_types::RBox,
};

let rbox = RBox::new(String::from("(The Wi)zard(of)oz"));

let string = rbox.in_move_ptr(|ptr| MovePtr::into_inner(ptr));

assert_eq!(string, String::from("(The Wi)zard(of)oz"));
source

pub const unsafe fn transmute<U>(this: Self) -> MovePtr<'a, U>
where U: 'a,

Transmute this RMove<'a, T> into a RMove<'a, U>.

Safety

This has the safety requirements as std::mem::transmute, as well as requiring that this MovePtr is aligned for U.

Example
use abi_stable::{
    pointer_trait::OwnedPointer,
    sabi_types::MovePtr,
    std_types::{RBox, RString, RVec},
};

let rbox = RBox::new(RString::from("hello"));

let bytes = rbox.in_move_ptr(|ptr| unsafe {
    MovePtr::into_inner(MovePtr::transmute::<RVec<u8>>(ptr))
});

assert_eq!(bytes.as_slice(), b"hello");

Trait Implementations§

source§

impl<'a, T> Debug for MovePtr<'a, T>
where T: Debug,

source§

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

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

impl<'a, T> Deref for MovePtr<'a, T>

§

type Target = T

The resulting type after dereferencing.
source§

fn deref(&self) -> &T

Dereferences the value.
source§

impl<'a, T> DerefMut for MovePtr<'a, T>

source§

fn deref_mut(&mut self) -> &mut T

Mutably dereferences the value.
source§

impl<'a, T> Display for MovePtr<'a, T>
where T: Display,

source§

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

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

impl<'a, T> Drop for MovePtr<'a, T>

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl<'a, T> GetStaticEquivalent_ for MovePtr<'a, T>
where T: __StableAbi + 'a,

§

type StaticEquivalent = _static_MovePtr<'static, <T as GetStaticEquivalent_>::StaticEquivalent>

The 'static equivalent of Self
source§

impl<'a, T> Hash for MovePtr<'a, T>
where T: Hash,

source§

fn hash<H>(&self, state: &mut H)
where H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl<'a, T> IntoInner for MovePtr<'a, T>

§

type Element = T

The type of the value this owns.
source§

fn into_inner_(self) -> T

Unwraps this type into its owned value.
source§

impl<'a, T> Ord for MovePtr<'a, T>
where T: Ord,

source§

fn cmp(&self, other: &Self) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
source§

impl<'a, T> PartialEq for MovePtr<'a, T>
where T: PartialEq,

source§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<'a, T> PartialOrd for MovePtr<'a, T>
where T: PartialOrd,

source§

fn partial_cmp(&self, other: &Self) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl<'a, T> StableAbi for MovePtr<'a, T>
where T: __StableAbi + 'a,

§

type IsNonZeroType = <NonNull<T> as StableAbi>::IsNonZeroType

Whether this type has a single invalid bit-pattern. Read more
source§

const LAYOUT: &'static TypeLayout = _

The layout of the type provided by implementors.
source§

const ABI_CONSTS: AbiConsts = _

const-equivalents of the associated types.
source§

impl<'a, T> Eq for MovePtr<'a, T>
where T: Eq,

source§

impl<'a, T: Send> Send for MovePtr<'a, T>

source§

impl<'a, T: Sync> Sync for MovePtr<'a, T>

Auto Trait Implementations§

§

impl<'a, T> RefUnwindSafe for MovePtr<'a, T>
where T: RefUnwindSafe,

§

impl<'a, T> Unpin for MovePtr<'a, T>

§

impl<'a, T> !UnwindSafe for MovePtr<'a, T>

Blanket Implementations§

source§

impl<T> AlignerFor<1> for T

§

type Aligner = AlignTo1<T>

The AlignTo* type which aligns Self to ALIGNMENT.
source§

impl<T> AlignerFor<1024> for T

§

type Aligner = AlignTo1024<T>

The AlignTo* type which aligns Self to ALIGNMENT.
source§

impl<T> AlignerFor<128> for T

§

type Aligner = AlignTo128<T>

The AlignTo* type which aligns Self to ALIGNMENT.
source§

impl<T> AlignerFor<16> for T

§

type Aligner = AlignTo16<T>

The AlignTo* type which aligns Self to ALIGNMENT.
source§

impl<T> AlignerFor<16384> for T

§

type Aligner = AlignTo16384<T>

The AlignTo* type which aligns Self to ALIGNMENT.
source§

impl<T> AlignerFor<2> for T

§

type Aligner = AlignTo2<T>

The AlignTo* type which aligns Self to ALIGNMENT.
source§

impl<T> AlignerFor<2048> for T

§

type Aligner = AlignTo2048<T>

The AlignTo* type which aligns Self to ALIGNMENT.
source§

impl<T> AlignerFor<256> for T

§

type Aligner = AlignTo256<T>

The AlignTo* type which aligns Self to ALIGNMENT.
source§

impl<T> AlignerFor<32> for T

§

type Aligner = AlignTo32<T>

The AlignTo* type which aligns Self to ALIGNMENT.
source§

impl<T> AlignerFor<32768> for T

§

type Aligner = AlignTo32768<T>

The AlignTo* type which aligns Self to ALIGNMENT.
source§

impl<T> AlignerFor<4> for T

§

type Aligner = AlignTo4<T>

The AlignTo* type which aligns Self to ALIGNMENT.
source§

impl<T> AlignerFor<4096> for T

§

type Aligner = AlignTo4096<T>

The AlignTo* type which aligns Self to ALIGNMENT.
source§

impl<T> AlignerFor<512> for T

§

type Aligner = AlignTo512<T>

The AlignTo* type which aligns Self to ALIGNMENT.
source§

impl<T> AlignerFor<64> for T

§

type Aligner = AlignTo64<T>

The AlignTo* type which aligns Self to ALIGNMENT.
source§

impl<T> AlignerFor<8> for T

§

type Aligner = AlignTo8<T>

The AlignTo* type which aligns Self to ALIGNMENT.
source§

impl<T> AlignerFor<8192> for T

§

type Aligner = AlignTo8192<T>

The AlignTo* type which aligns Self to ALIGNMENT.
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> 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<S> ROExtAcc for S

source§

fn f_get<F>(&self, offset: FieldOffset<S, F, Aligned>) -> &F

Gets a reference to a field, determined by offset. Read more
source§

fn f_get_mut<F>(&mut self, offset: FieldOffset<S, F, Aligned>) -> &mut F

Gets a muatble reference to a field, determined by offset. Read more
source§

fn f_get_ptr<F, A>(&self, offset: FieldOffset<S, F, A>) -> *const F

Gets a const pointer to a field, the field is determined by offset. Read more
source§

fn f_get_mut_ptr<F, A>(&mut self, offset: FieldOffset<S, F, A>) -> *mut F

Gets a mutable pointer to a field, determined by offset. Read more
source§

impl<S> ROExtOps<Aligned> for S

source§

fn f_replace<F>(&mut self, offset: FieldOffset<S, F, Aligned>, value: F) -> F

Replaces a field (determined by offset) with value, returning the previous value of the field. Read more
source§

fn f_swap<F>(&mut self, offset: FieldOffset<S, F, Aligned>, right: &mut S)

Swaps a field (determined by offset) with the same field in right. Read more
source§

fn f_get_copy<F>(&self, offset: FieldOffset<S, F, Aligned>) -> F
where F: Copy,

Gets a copy of a field (determined by offset). The field is determined by offset. Read more
source§

impl<S> ROExtOps<Unaligned> for S

source§

fn f_replace<F>(&mut self, offset: FieldOffset<S, F, Unaligned>, value: F) -> F

Replaces a field (determined by offset) with value, returning the previous value of the field. Read more
source§

fn f_swap<F>(&mut self, offset: FieldOffset<S, F, Unaligned>, right: &mut S)

Swaps a field (determined by offset) with the same field in right. Read more
source§

fn f_get_copy<F>(&self, offset: FieldOffset<S, F, Unaligned>) -> F
where F: Copy,

Gets a copy of a field (determined by offset). The field is determined by offset. Read more
source§

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

source§

fn eq_id(&self, other: &Self) -> bool

Compares the address of self with the address of other. Read more
source§

fn piped<F, U>(self, f: F) -> U
where F: FnOnce(Self) -> U, Self: Sized,

Emulates the pipeline operator, allowing method syntax in more places. Read more
source§

fn piped_ref<'a, F, U>(&'a self, f: F) -> U
where F: FnOnce(&'a Self) -> U,

The same as piped except that the function takes &Self Useful for functions that take &Self instead of Self. Read more
source§

fn piped_mut<'a, F, U>(&'a mut self, f: F) -> U
where F: FnOnce(&'a mut Self) -> U,

The same as piped, except that the function takes &mut Self. Useful for functions that take &mut Self instead of Self.
source§

fn mutated<F>(self, f: F) -> Self
where F: FnOnce(&mut Self), Self: Sized,

Mutates self using a closure taking self by mutable reference, passing it along the method chain. Read more
source§

fn observe<F>(self, f: F) -> Self
where F: FnOnce(&Self), Self: Sized,

Observes the value of self, passing it along unmodified. Useful in long method chains. Read more
source§

fn into_<T>(self) -> T
where Self: Into<T>,

Performs a conversion with Into. using the turbofish .into_::<_>() syntax. Read more
source§

fn as_ref_<T>(&self) -> &T
where Self: AsRef<T>, T: ?Sized,

Performs a reference to reference conversion with AsRef, using the turbofish .as_ref_::<_>() syntax. Read more
source§

fn as_mut_<T>(&mut self) -> &mut T
where Self: AsMut<T>, T: ?Sized,

Performs a mutable reference to mutable reference conversion with AsMut, using the turbofish .as_mut_::<_>() syntax. Read more
source§

fn drop_(self)
where Self: Sized,

Drops self using method notation. Alternative to std::mem::drop. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<This> TransmuteElement for This
where This: ?Sized,

source§

unsafe fn transmute_element<T>( self ) -> <Self as CanTransmuteElement<T>>::TransmutedPtr
where Self: CanTransmuteElement<T>,

Transmutes the element type of this pointer.. Read more
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> TypeIdentity for T
where T: ?Sized,

§

type Type = T

This is always Self.
source§

fn into_type(self) -> Self::Type
where Self: Sized, Self::Type: Sized,

Converts a value back to the original type.
source§

fn as_type(&self) -> &Self::Type

Converts a reference back to the original type.
source§

fn as_type_mut(&mut self) -> &mut Self::Type

Converts a mutable reference back to the original type.
source§

fn into_type_box(self: Box<Self>) -> Box<Self::Type>

Converts a box back to the original type.
source§

fn into_type_arc(this: Arc<Self>) -> Arc<Self::Type>

Converts an Arc back to the original type. Read more
source§

fn into_type_rc(this: Rc<Self>) -> Rc<Self::Type>

Converts an Rc back to the original type. Read more
source§

fn from_type(this: Self::Type) -> Self
where Self: Sized, Self::Type: Sized,

Converts a value back to the original type.
source§

fn from_type_ref(this: &Self::Type) -> &Self

Converts a reference back to the original type.
source§

fn from_type_mut(this: &mut Self::Type) -> &mut Self

Converts a mutable reference back to the original type.
source§

fn from_type_box(this: Box<Self::Type>) -> Box<Self>

Converts a box back to the original type.
source§

fn from_type_arc(this: Arc<Self::Type>) -> Arc<Self>

Converts an Arc back to the original type.
source§

fn from_type_rc(this: Rc<Self::Type>) -> Rc<Self>

Converts an Rc back to the original type.