Struct abi_stable::std_types::RArc

source ·
#[repr(C)]
pub struct RArc<T> { /* private fields */ }
Expand description

Ffi-safe version of std::sync::Arc

Example

Using an RArc<RMutex<RVec<u32>>> to get a list populated from multiple threads.

use abi_stable::{
    external_types::RMutex,
    std_types::{RArc, RVec},
};

use std::thread;

let arc = RArc::new(RMutex::new(RVec::new()));

{
    let arc2 = RArc::clone(&arc);
    assert!(std::ptr::eq(&*arc, &*arc2));
}

let mut guards = Vec::new();

for i in 0..10_u64 {
    let arc = RArc::clone(&arc);
    guards.push(thread::spawn(move || {
        for j in 0..100_u64 {
            arc.lock().push(i * 100 + j);
        }
    }));
}

for guard in guards {
    guard.join().unwrap();
}

let mut vec = RArc::try_unwrap(arc)
    .ok()
    .expect("All the threads were joined, so this must be the only RArc")
    .into_inner();

vec.sort();

assert_eq!(vec, (0..1000).collect::<RVec<_>>());

Implementations§

source§

impl<T> RArc<T>

source

pub fn new(this: T) -> Self

Constructs an RArc from a value.

Example
use abi_stable::std_types::RArc;

let arc = RArc::new(100);
source

pub fn into_arc(this: Self) -> Arc<T>
where T: Clone,

Converts this RArc<T> into an Arc<T>

Allocators

RArc<T> cannot always be converted to an Arc<T>, because their allocators might be different.

When is T cloned

T is cloned if the current dynamic_library/executable is not the one that created the RArc<T>, and the strong count is greater than 1.

Example
use abi_stable::std_types::RArc;
use std::sync::Arc;

let arc = RArc::new(100);

assert_eq!(RArc::into_arc(arc), Arc::new(100));
source

pub fn try_unwrap(this: Self) -> Result<T, Self>

Attempts to unwrap this RArc<T> into a T, returns Err(self) if the RArc<T>’s strong count is greater than 1.

Example
use abi_stable::std_types::RArc;

let arc0 = RArc::new(100);
assert_eq!(RArc::try_unwrap(arc0), Ok(100));

let arc1 = RArc::new(100);
let arc1_clone = RArc::clone(&arc1);
assert_eq!(RArc::try_unwrap(arc1), Err(arc1_clone.clone()));
source

pub fn get_mut(this: &mut Self) -> Option<&mut T>

Attempts to create a mutable reference to T, failing if the RArc<T>’s strong count is greater than 1.

Example
use abi_stable::std_types::RArc;

let mut arc0 = RArc::new(100);
*RArc::get_mut(&mut arc0).unwrap() += 400;
assert_eq!(*arc0, 500);

let mut arc1 = RArc::new(100);
let _arc1_clone = RArc::clone(&arc1);
assert_eq!(RArc::get_mut(&mut arc1), None);
source

pub fn make_mut(this: &mut Self) -> &mut T
where T: Clone,

Makes a mutable reference to T.

If there are other RArc<T>s pointing to the same value, then T is cloned into a new RArc<T> to ensure unique ownership of the value.

Postconditions

After this call, the strong count of this will be 1, because either it was 1 before the call, or because a new RArc<T> was created to ensure unique ownership of T.

Example
use abi_stable::std_types::RArc;

let mut arc0 = RArc::new(100);
*RArc::make_mut(&mut arc0) += 400;
assert_eq!(*arc0, 500);

let mut arc1 = RArc::new(100);
let arc1_clone = RArc::clone(&arc1);
*RArc::make_mut(&mut arc1) += 400;
assert_eq!(*arc1, 500);
assert_eq!(*arc1_clone, 100);
source

pub fn strong_count(this: &Self) -> usize

Gets the number of RArc that point to the value.

Example
use abi_stable::std_types::RArc;

let arc = RArc::new(0);
assert_eq!(RArc::strong_count(&arc), 1);

let clone = RArc::clone(&arc);
assert_eq!(RArc::strong_count(&arc), 2);
source

pub fn weak_count(this: &Self) -> usize

Gets the number of std::sync::Weak that point to the value.

Example
use abi_stable::std_types::RArc;

use std::sync::Arc;

let rustarc = Arc::new(0);
let arc = RArc::from(rustarc.clone());
assert_eq!(RArc::weak_count(&arc), 0);

let weak_0 = Arc::downgrade(&rustarc);
assert_eq!(RArc::weak_count(&arc), 1);

let weak_1 = Arc::downgrade(&rustarc);
assert_eq!(RArc::weak_count(&arc), 2);

Trait Implementations§

source§

impl<T> AsPtr for RArc<T>

source§

fn as_ptr(&self) -> *const T

Gets a const raw pointer to the value that this points to.
source§

fn as_rref(&self) -> RRef<'_, Self::PtrTarget>

Converts this pointer to an RRef.
source§

impl<T> AsRef<T> for RArc<T>

source§

fn as_ref(&self) -> &T

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

impl<T> Borrow<T> for RArc<T>

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T, O> CanTransmuteElement<O> for RArc<T>

§

type TransmutedPtr = RArc<O>

The type of the pointer after it’s element type has been changed.
source§

unsafe fn transmute_element_(self) -> Self::TransmutedPtr

Transmutes the element type of this pointer.. Read more
source§

impl<T> Clone for RArc<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> Debug for RArc<T>
where T: Debug,

source§

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

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

impl<T> Default for RArc<T>
where T: Default,

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<T> Deref for RArc<T>

§

type Target = T

The resulting type after dereferencing.
source§

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

Dereferences the value.
source§

impl<'de, T> Deserialize<'de> for RArc<T>
where T: Deserialize<'de>,

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl<T> Display for RArc<T>
where T: Display,

source§

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

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

impl<T> Drop for RArc<T>

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl<T> From<Arc<T>> for RArc<T>

source§

fn from(this: Arc<T>) -> RArc<T>

Converts to this type from the input type.
source§

impl<T> From<RArc<T>> for Arc<T>
where T: Clone + StableAbi,

source§

fn from(this: RArc<T>) -> Arc<T>

Converts to this type from the input type.
source§

impl<T> GetPointerKind for RArc<T>

§

type Kind = PK_SmartPointer

The kind of the pointer. Read more
§

type PtrTarget = T

What this pointer points to. Read more
source§

const KIND: PointerKind = <Self::Kind as PointerKindVariant>::VALUE

The value-level version of the Kind associated type. Read more
source§

impl<T> GetStaticEquivalent_ for RArc<T>
where T: __StableAbi,

§

type StaticEquivalent = _static_RArc<<T as GetStaticEquivalent_>::StaticEquivalent>

The 'static equivalent of Self
source§

impl<T> Hash for RArc<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<T> IntoReprRust for RArc<T>
where T: Clone + StableAbi,

§

type ReprRust = Arc<T>

The #[repr(Rust)] equivalent.
source§

fn into_rust(self) -> Self::ReprRust

Performs the conversion
source§

impl<T> Ord for RArc<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<T> PartialEq for RArc<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<T> PartialOrd for RArc<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<T> Pointer for RArc<T>

source§

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

Formats the value using the given formatter.
source§

impl<T> Serialize for RArc<T>
where T: Serialize,

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl<T> StableAbi for RArc<T>
where T: __StableAbi,

§

type IsNonZeroType = False

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<T> Eq for RArc<T>
where T: Eq,

source§

impl<T> Send for RArc<T>
where T: Send + Sync,

source§

impl<T> Sync for RArc<T>
where T: Send + Sync,

source§

impl<T> Unpin for RArc<T>

Auto Trait Implementations§

§

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

§

impl<T> UnwindSafe for RArc<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<'a, T> RCowCompatibleRef<'a> for T
where T: Clone + 'a,

§

type RefC = &'a T

The (preferably) ffi-safe equivalent of &Self.
§

type ROwned = T

The owned version of Self::RefC.
source§

fn as_c_ref(from: &'a T) -> <T as RCowCompatibleRef<'a>>::RefC

Converts a reference to an FFI-safe type
source§

fn as_rust_ref(from: <T as RCowCompatibleRef<'a>>::RefC) -> &'a T

Converts an FFI-safe type to a reference
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> StringExt for T
where T: Borrow<str> + ?Sized,

source§

fn previous_char_boundary(&self, index: usize) -> usize

Returns the previous character boundary, stopping at 0. Read more
source§

fn next_char_boundary(&self, index: usize) -> usize

Returns the next character boundary. Read more
source§

fn left_char_boundary(&self, index: usize) -> usize

Returns the closest characted boundary left of index(including index). Read more
source§

fn right_char_boundary(&self, index: usize) -> usize

Returns the closest characted boundary right of index(including index). Read more
source§

fn split_while<P, T, 'a>(&'a self, mapper: P) -> SplitWhile<'a, P, T>
where T: Eq + Clone, P: FnMut(char) -> T,

Returns an iterator over substrings whose characters were mapped to the same key by mapper. Read more
source§

fn rsplit_while<P, T, 'a>(&'a self, mapper: P) -> RSplitWhile<'a, P, T>
where T: Eq + Clone, P: FnMut(char) -> T,

A variation of split_while that iterates from the right(the order of substrings is reversed). Read more
source§

fn get_nth_char_index(&self, nth: usize) -> Option<usize>

The byte index of the nth character Read more
source§

fn nth_char_index(&self, nth: usize) -> usize

The byte index of the nth character Read more
source§

fn nth_char(&self, nth: usize) -> Option<char>

Returns the nth character in the str. Read more
source§

fn first_chars(&self, n: usize) -> &str

Returns a string containing the first n chars. Read more
source§

fn last_chars(&self, n: usize) -> &str

Returns a string containing the last n chars Read more
source§

fn from_nth_char(&self, n: usize) -> &str

Returns the string from the nth character Read more
source§

fn calc_len_utf16(&self) -> usize

Returns the length of the string in utf16 Read more
source§

fn get_char_at(&self, at_byte: usize) -> Option<char>

Returns the character at the at_byte index inside of the string, returning None if the index is outside the string. Read more
source§

fn char_indices_to(&self, to: usize) -> CharIndices<'_>

Returns an iterator over (index,char) pairs up to (but not including) the char at the to byte. Read more
source§

fn char_indices_from(&self, from: usize) -> CharIndicesFrom<'_>

Returns an iterator over (index, char) pairs, starting from the from byte. Read more
source§

fn left_pad(&self, how_much: usize) -> String

Pads the string on the left with how_much additional spaces. Read more
source§

fn left_padder<'a>(&'a self, how_much: usize) -> LeftPadder<'a>

Returns a value that pads the string on the left with how_much additional spaces in its Display impl. Read more
source§

fn line_indentation(&self) -> usize

The indentation of the first line. Read more
source§

fn min_indentation(&self) -> usize

The minimum indentation of the string, ignoring lines that only contain whitespace. Read more
source§

fn max_indentation(&self) -> usize

The maximum indentation of the string, ignoring lines that only contain whitespace. Read more
source§

impl<T> ToOwned for T
where 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> 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.
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

source§

impl<This> ValidTag_Bounds for This
where This: Debug + Clone + PartialEq,