Struct ReadRef

Source
pub struct ReadRef<T>(/* private fields */);
Expand description

The read value of a value cell. The read value is immutable, while the cell itself might change over time. It’s basically a snapshot of a value at a certain point in time.

Internally it stores a reference counted reference to a value on the heap.

Implementations§

Source§

impl<T> ReadRef<T>

Source

pub fn new_owned(value: T) -> Self

Source

pub fn new_arc(arc: Arc<T>) -> Self

Source

pub fn ptr_eq(&self, other: &ReadRef<T>) -> bool

Source

pub fn ptr(&self) -> *const T

Source§

impl<T> ReadRef<T>
where T: VcValueType,

Source

pub fn cell(read_ref: ReadRef<T>) -> Vc<T>

Returns a new cell that points to the same value as the given reference.

Source§

impl<T> ReadRef<T>
where T: VcValueType,

Source

pub fn try_unwrap( this: Self, ) -> Result<<<T as VcValueType>::Read as VcRead<T>>::Target, Self>

Returns the inner value, if this ReadRef has exactly one strong reference.

Otherwise, an Err is returned with the same ReadRef that was passed in.

Source§

impl<T> ReadRef<T>
where T: VcValueType, <<T as VcValueType>::Read as VcRead<T>>::Target: Clone,

Source

pub fn into_owned(this: Self) -> <<T as VcValueType>::Read as VcRead<T>>::Target

This is return a owned version of the value. It potentially clones the value. The clone might be expensive. Prefer Deref to get a reference to the value.

Trait Implementations§

Source§

impl<T> Clone for ReadRef<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 ReadRef<T>
where T: VcValueType, <<T as VcValueType>::Read as VcRead<T>>::Target: Debug,

Source§

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

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

impl<T> Deref for ReadRef<T>
where T: VcValueType,

Source§

type Target = <<T as VcValueType>::Read as VcRead<T>>::Target

The resulting type after dereferencing.
Source§

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

Dereferences the value.
Source§

impl<'de, T> Deserialize<'de> for ReadRef<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> DeterministicHash for ReadRef<T>

Source§

fn deterministic_hash<H: DeterministicHasher>(&self, state: &mut H)

Adds self’s bytes to the DeterministicHasher’s state, in a way that is replicatable on any platform or process run.
Source§

impl<T> Display for ReadRef<T>
where T: VcValueType, <<T as VcValueType>::Read as VcRead<T>>::Target: Display,

Source§

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

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

impl<T> Hash for ReadRef<T>
where T: VcValueType, <<T as VcValueType>::Read as VcRead<T>>::Target: Hash,

Source§

fn hash<H: Hasher>(&self, state: &mut H)

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<'a, T, I, J: Iterator<Item = I>> IntoIterator for &'a ReadRef<T>
where T: VcValueType, &'a <<T as VcValueType>::Read as VcRead<T>>::Target: IntoIterator<Item = I, IntoIter = J>,

Source§

type Item = I

The type of the elements being iterated over.
Source§

type IntoIter = J

Which kind of iterator are we turning this into?
Source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
Source§

impl<T, I: 'static, J: Iterator<Item = I>> IntoIterator for ReadRef<T>
where T: VcValueType, &'static <<T as VcValueType>::Read as VcRead<T>>::Target: IntoIterator<Item = I, IntoIter = J>,

Source§

type Item = I

The type of the elements being iterated over.
Source§

type IntoIter = ReadRefIter<T, I, J>

Which kind of iterator are we turning this into?
Source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
Source§

impl<T> Ord for ReadRef<T>
where T: VcValueType, <<T as VcValueType>::Read as VcRead<T>>::Target: 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,

Restrict a value to a certain interval. Read more
Source§

impl<T> PartialEq for ReadRef<T>
where T: VcValueType, <<T as VcValueType>::Read as VcRead<T>>::Target: PartialEq,

Source§

fn eq(&self, other: &Self) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<T> PartialOrd for ReadRef<T>
where T: VcValueType, <<T as VcValueType>::Read as VcRead<T>>::Target: 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

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

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

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

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl<T> Serialize for ReadRef<T>
where T: VcValueType, <<T as VcValueType>::Read as VcRead<T>>::Target: 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> TraceRawVcs for ReadRef<T>
where T: VcValueType, <<T as VcValueType>::Read as VcRead<T>>::Target: TraceRawVcs,

Source§

fn trace_raw_vcs(&self, trace_context: &mut TraceRawVcsContext)

Source§

fn get_raw_vcs(&self) -> Vec<RawVc>

Source§

impl<T> ValueDebugFormat for ReadRef<T>
where T: VcValueType, <<T as VcValueType>::Read as VcRead<T>>::Target: ValueDebugFormat + 'static,

Source§

impl<T> Eq for ReadRef<T>
where T: VcValueType, <<T as VcValueType>::Read as VcRead<T>>::Target: Eq,

Source§

impl<T> NonLocalValue for ReadRef<T>
where T: VcValueType, <<T as VcValueType>::Read as VcRead<T>>::Target: NonLocalValue,

Source§

impl<T> OperationValue for ReadRef<T>

Auto Trait Implementations§

§

impl<T> Freeze for ReadRef<T>

§

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

§

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

§

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

§

impl<T> Unpin for ReadRef<T>
where T: Unpin,

§

impl<T> UnwindSafe for ReadRef<T>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> Any for T
where T: Any,

§

fn get_type_id(&self) -> TypeId

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
§

impl<Q, K> Comparable<K> for Q
where Q: Ord + ?Sized, K: Borrow<Q> + ?Sized,

§

fn compare(&self, key: &K) -> Ordering

Compare self to key and return their ordering.
Source§

impl<T> DynamicEqHash for T
where T: Any + PartialEq + Eq + Hash,

Source§

fn as_any(&self) -> &(dyn Any + 'static)

Source§

fn dyn_eq(&self, other: &(dyn Any + 'static)) -> bool

Source§

fn dyn_hash(&self, state: &mut dyn Hasher)

§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> MagicAny for T
where T: Debug + Eq + Hash + Send + Sync + TraceRawVcs + 'static,

Source§

fn magic_any_arc(self: Arc<T>) -> Arc<dyn Any + Sync + Send>

Source§

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

Source§

fn magic_eq(&self, other: &(dyn MagicAny + 'static)) -> bool

Source§

fn magic_hash(&self, hasher: &mut dyn Hasher)

Source§

fn magic_trace_raw_vcs(&self, trace_context: &mut TraceRawVcsContext)

Source§

fn magic_type_name(&self) -> &'static str

§

impl<T> Pointable for T

§

const ALIGN: usize

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<P, T> Receiver for P
where P: Deref<Target = T> + ?Sized, T: ?Sized,

Source§

type Target = T

🔬This is a nightly-only experimental API. (arbitrary_self_types)
The target type on which the method may be called.
Source§

impl<T> Serialize for T
where T: Serialize + ?Sized,

Source§

fn erased_serialize(&self, serializer: &mut dyn Serializer) -> Result<(), Error>

Source§

fn do_erased_serialize( &self, serializer: &mut dyn Serializer, ) -> Result<(), ErrorImpl>

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

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§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

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>,

Source§

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

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
Source§

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