Enum kaspa_utils::refs::Refs

source ·
pub enum Refs<'a, T> {
    Ref(&'a T),
    Arc(Arc<T>),
    Rc(Rc<T>),
    Box(Box<T>),
}
Expand description

Enum used to represent a concrete varying pointer type which only needs to be accessed by ref. We avoid adding a Val(T) variant in order to keep the size of the enum minimal

Variants§

§

Ref(&'a T)

§

Arc(Arc<T>)

§

Rc(Rc<T>)

§

Box(Box<T>)

Trait Implementations§

source§

impl<T> AsRef<T> for Refs<'_, T>

source§

fn as_ref(&self) -> &T

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

impl<T> Deref for Refs<'_, T>

§

type Target = T

The resulting type after dereferencing.
source§

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

Dereferences the value.
source§

impl<'a, T> From<&'a T> for Refs<'a, T>

source§

fn from(r: &'a T) -> Self

Converts to this type from the input type.
source§

impl<T> From<Arc<T>> for Refs<'_, T>

source§

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

Converts to this type from the input type.
source§

impl<T> From<Box<T>> for Refs<'_, T>

source§

fn from(b: Box<T>) -> Self

Converts to this type from the input type.
source§

impl<T> From<Rc<T>> for Refs<'_, T>

source§

fn from(r: Rc<T>) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

§

impl<'a, T> RefUnwindSafe for Refs<'a, T>
where T: RefUnwindSafe,

§

impl<'a, T> !Send for Refs<'a, T>

§

impl<'a, T> !Sync for Refs<'a, T>

§

impl<'a, T> Unpin for Refs<'a, T>

§

impl<'a, T> UnwindSafe for Refs<'a, 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
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<const N: usize, T> Serialize<N> for T
where T: AsRef<[u8; N]>,

source§

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

Serialize self using the provided Serializer.
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.
§

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

§

fn vzip(self) -> V