Struct cglue::arc::CArcSome

source ·
#[repr(C)]
pub struct CArcSome<T: Sized + 'static> { /* private fields */ }
Expand description

FFI-Safe Arc

This is a variant where the underlying instance is always Some(&T), meaning there is no need for any None checks.

This Arc essentially uses clone/drop from the module that created it, to not mix up global allocators.

Implementations§

source§

impl<T> CArcSome<T>

source

pub fn transpose(self) -> CArc<T>

Converts CArcSome<T> into CArc<T>

Examples
use cglue::arc::{CArc, CArcSome};

let mut arc = CArcSome::from(0u64);

let arc2 = arc.transpose();

assert!(arc2.as_ref().is_some());
source

pub unsafe fn into_arc(self) -> Arc<T>

Converts CArcSome<T> into Arc<T>

Safety

This function is only safe when the underlying arc was created in the same binary/library. If a third-party arc is used, the behavior is undefined.

Trait Implementations§

source§

impl<T> AsRef<T> for CArcSome<T>

source§

fn as_ref(&self) -> &T

Converts this type into a shared reference of the (usually inferred) input type.
source§

impl<T> Clone for CArcSome<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<T> Deref for CArcSome<T>

§

type Target = T

The resulting type after dereferencing.
source§

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

Dereferences the value.
source§

impl<T> Drop for CArcSome<T>

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl<T> From<Arc<T>> for CArcSome<T>

source§

fn from(arc: Arc<T>) -> Self

Converts to this type from the input type.
source§

impl<T> From<T> for CArcSome<T>

source§

fn from(obj: T) -> Self

Converts to this type from the input type.
source§

impl<T> Opaquable for CArcSome<T>

§

type OpaqueTarget = CArcSome<c_void>

source§

fn into_opaque(self) -> Self::OpaqueTarget

Transform self into an opaque version of the trait object. Read more
source§

impl<T: Sync + Send> Send for CArcSome<T>

source§

impl<T: Sync + Send> Sync for CArcSome<T>

Auto Trait Implementations§

§

impl<T> RefUnwindSafe for CArcSome<T>where T: RefUnwindSafe,

§

impl<T> Unpin for CArcSome<T>

§

impl<T> UnwindSafe for CArcSome<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> Forward for Twhere T: Deref,

source§

fn forward(self) -> Fwd<Self>

source§

impl<T> From<!> for T

source§

fn from(t: !) -> T

Converts to this type from the input type.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, F> From2<T> for Fwhere T: Into<F>,

source§

fn from2(other: T) -> F

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.
source§

impl<T> ContextBounds for Twhere T: 'static + Clone + Send + Sync,

source§

impl<T> GenericTypeBounds for T

source§

impl<T> Opaque for Twhere T: Opaquable<OpaqueTarget = T>,