[][src]Struct dync::ValueRef

pub struct ValueRef<'a, V: ?Sized> where
    V: HasDrop
{ /* fields omitted */ }

A generic value reference into a buffer.

Implementations

impl<'a, V: HasDrop> ValueRef<'a, V>[src]

pub fn new<T: Any + DropBytes>(typed: &'a T) -> ValueRef<'a, V> where
    V: VTable<T>, 
[src]

Create a new ValueRef from a typed reference.

impl<'a, V: ?Sized + HasDrop> ValueRef<'a, V>[src]

pub fn size(&self) -> usize[src]

Get the size of the value pointed-to by this reference.

pub fn value_type_id(&self) -> TypeId[src]

Get the TypeId of the referenced value.

pub fn is<T: 'static>(&self) -> bool[src]

Returns true if this referenced value's type is the same as T.

pub fn clone_value(&self) -> Value<Box<[MaybeUninit<u8>]>, V> where
    V: HasClone + Clone
[src]

Clone the referenced value.

Unlike the Clone trait, this function will produce an owned clone of the value pointed to by this value reference.

pub fn clone_small_value(&self) -> Value<MaybeUninit<usize>, V> where
    V: HasClone + Clone
[src]

Clone the referenced value.

Unlike the Clone trait, this function will produce an owned clone of the value pointed to by this value reference.

This version of clone_value tries to fit the underlying value into a usize sized value, and panics if that fails.

pub fn downcast<T: 'static>(self) -> Option<&'a T>[src]

Downcast this value reference into a borrowed T type. Return None if the downcast fails.

pub fn upcast<U: ?Sized + HasDrop + From<V>>(self) -> ValueRef<'a, U> where
    V: Clone
[src]

pub fn upcast_ref<U: ?Sized + HasDrop + From<V>>(&self) -> ValueRef<U> where
    V: Clone
[src]

pub fn reborrow(&self) -> ValueRef<V>[src]

An alternative to Clone that doesn't require cloning the vtable.

Trait Implementations

impl<'a, V: Clone + ?Sized> Clone for ValueRef<'a, V> where
    V: HasDrop
[src]

impl<'a, V: ?Sized + HasDebug + HasDrop> Debug for ValueRef<'a, V>[src]

impl<'a, V: ?Sized + HasEq + HasDrop> Eq for ValueRef<'a, V>[src]

impl<'a, B: GetBytesMut, V: ?Sized> From<&'a Value<B, V>> for ValueRef<'a, V> where
    B: GetBytesRef,
    V: Clone + HasDrop
[src]

impl<'a, V: Any + Clone> From<CopyValueRef<'a, V>> for ValueRef<'a, (DropFn, V)>[src]

impl<'a, V: HasDrop> From<ValueMut<'a, V>> for ValueRef<'a, V>[src]

impl<'a, V: HasDrop> From<ValueRef<'a, V>> for Meta<VTableRef<'a, V>>[src]

impl<'a, V: ?Sized + HasHash + HasDrop> Hash for ValueRef<'a, V>[src]

impl<'a, V: ?Sized + HasPartialEq + HasDrop> PartialEq<ValueRef<'a, V>> for ValueRef<'a, V>[src]

impl<'a, V: ?Sized + HasDrop + HasSend> Send for ValueRef<'a, V>[src]

impl<'a, V: ?Sized + HasDrop + HasSync> Sync for ValueRef<'a, V>[src]

Auto Trait Implementations

impl<'a, V: ?Sized> RefUnwindSafe for ValueRef<'a, V> where
    V: RefUnwindSafe

impl<'a, V: ?Sized> Unpin for ValueRef<'a, V>

impl<'a, V: ?Sized> UnwindSafe for ValueRef<'a, V> where
    V: RefUnwindSafe + UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> CloneBytes for T where
    T: 'static + Clone
[src]

impl<T> DebugBytes for T where
    T: 'static + Debug
[src]

impl<T> Downcast for T where
    T: Any
[src]

impl<T> DowncastSync for T where
    T: Send + Sync + Any
[src]

impl<T> DropBytes for T where
    T: 'static, 
[src]

impl<T> From<T> for T[src]

impl<T> HashBytes for T where
    T: 'static + Hash
[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> PartialEqBytes for T where
    T: 'static + PartialEq<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.