Struct vstd::ptr::PointsToData
source · pub struct PointsToData<V> {
pub pptr: int,
pub value: Option<V>,
}
👎Deprecated: The vstd::ptr version of PPtr is deprecated. Use either:
–
PPtr<T>
in vstd::simple_pptr (for simple use-cases, with fixed-size typed heap allocations)
– *mut T
with vstd::raw_ptr (for more advanced use-cases)Expand description
Represents the meaning of a PointsTo
object.
Fields§
§pptr: int
👎Deprecated: The vstd::ptr version of PPtr is deprecated. Use either:
–
PPtr<T>
in vstd::simple_pptr (for simple use-cases, with fixed-size typed heap allocations)
– *mut T
with vstd::raw_ptr (for more advanced use-cases)Indicates that this token is for a pointer ptr: PPtr<V>
such that ptr.id()
equal to this value.
value: Option<V>
👎Deprecated: The vstd::ptr version of PPtr is deprecated. Use either:
–
PPtr<T>
in vstd::simple_pptr (for simple use-cases, with fixed-size typed heap allocations)
– *mut T
with vstd::raw_ptr (for more advanced use-cases)Indicates that this token gives the ability to read a value V
from memory.
When None
, it indicates that the memory is uninitialized.
Auto Trait Implementations§
impl<V> RefUnwindSafe for PointsToData<V>where
V: RefUnwindSafe,
impl<V> Send for PointsToData<V>where
V: Send,
impl<V> Sync for PointsToData<V>where
V: Sync,
impl<V> Unpin for PointsToData<V>where
V: Unpin,
impl<V> UnwindSafe for PointsToData<V>where
V: UnwindSafe,
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