Struct mnemos_alloc::containers::Arc
source · pub struct Arc<T: ?Sized> {
inner: Arc<T>,
}
Expand description
A wrapper of alloc::sync::Arc<T>
Fields§
§inner: Arc<T>
Implementations§
source§impl<T> Arc<T>
impl<T> Arc<T>
sourcepub fn try_new(t: T) -> Result<Self, T>
pub fn try_new(t: T) -> Result<Self, T>
Attempt to allocate a new reference counted T.
Returns an error containing the provided value if the allocation could not immediately succeed.
NOTE/TODO: Today this will panic if not immediately successful. This should be fixed in the future
sourcepub async fn new(t: T) -> Self
pub async fn new(t: T) -> Self
Attempt to allocate a new reference counted T.
Will not complete until the allocation succeeds
NOTE/TODO: Today this will panic if not immediately successful. This should be fixed in the future
sourcepub fn into_raw(a: Self) -> NonNull<T>
pub fn into_raw(a: Self) -> NonNull<T>
Convert into a pointer
This does NOT change the strong reference count
sourcepub unsafe fn from_raw(nn: NonNull<T>) -> Self
pub unsafe fn from_raw(nn: NonNull<T>) -> Self
Restore from a pointer
This does NOT change the strong reference count. This has the same safety invariants as alloc::sync::Arc.
sourcepub unsafe fn increment_strong_count(ptr: *const T)
pub unsafe fn increment_strong_count(ptr: *const T)
Increment the strong reference count
This has the same afety invariants as alloc::sync::Arc::increment_strong_count().