#[repr(transparent)]pub struct Pointer<T>(pub Value, _);Expand description
A handle to a Rust value/reference owned by the OCaml heap.
This should only be used with values allocated with alloc_final or alloc_custom,
for abstract pointers see Value::alloc_abstract_ptr and Value::abstract_ptr_val
Tuple Fields§
§0: ValueImplementations§
Source§impl<T: Custom> Pointer<T>
impl<T: Custom> Pointer<T>
Sourcepub fn alloc_custom(x: T) -> Pointer<T>where
T: Custom,
pub fn alloc_custom(x: T) -> Pointer<T>where
T: Custom,
Allocate a Custom value
Source§impl<T> Pointer<T>
impl<T> Pointer<T>
Sourcepub fn alloc_final(
x: T,
finalizer: Option<unsafe extern "C" fn(Raw)>,
used_max: Option<(usize, usize)>,
) -> Pointer<T>
pub fn alloc_final( x: T, finalizer: Option<unsafe extern "C" fn(Raw)>, used_max: Option<(usize, usize)>, ) -> Pointer<T>
Allocate a new value with an optional custom finalizer and used/max
This calls caml_alloc_final under-the-hood, which can has less than ideal performance
behavior. In most cases you should prefer Poiner::alloc_custom when possible.
Sourcepub unsafe fn drop_in_place(self)
pub unsafe fn drop_in_place(self)
Drop pointer in place
§Safety
This should only be used when you’re in control of the underlying value and want to drop it. It should only be called once.
Sourcepub fn as_mut_ptr(&mut self) -> *mut T
pub fn as_mut_ptr(&mut self) -> *mut T
Access the underlying mutable pointer
Trait Implementations§
Source§impl<T> FromValue for Pointer<T>
impl<T> FromValue for Pointer<T>
Source§fn from_value(value: Value) -> Self
fn from_value(value: Value) -> Self
Convert from OCaml value
Source§impl<T: PartialOrd> PartialOrd for Pointer<T>
impl<T: PartialOrd> PartialOrd for Pointer<T>
impl<T: Eq> Eq for Pointer<T>
impl<T> StructuralPartialEq for Pointer<T>
Auto Trait Implementations§
impl<T> Freeze for Pointer<T>
impl<T> !RefUnwindSafe for Pointer<T>
impl<T> !Send for Pointer<T>
impl<T> !Sync for Pointer<T>
impl<T> Unpin for Pointer<T>where
T: Unpin,
impl<T> !UnwindSafe for Pointer<T>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more