[−][src]Struct dync::ValueRef
A generic value reference into a buffer.
Methods
impl<'a, V> 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 new<T: Any + DropBytes>(typed: &'a T) -> ValueRef<'a, V> where
V: VTable<T>, [src]
V: VTable<T>,
Create a new ValueRef from a typed reference.
pub fn clone_value(&self) -> Value<Box<[u8]>, V> where
V: HasClone + Clone, [src]
V: HasClone + Clone,
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 downcast<T: 'static>(self) -> Option<&'a T>[src]
Downcast this value reference into a borrowed T type. Return None if the downcast fails.
Trait Implementations
impl<'a, V: Clone> Clone for ValueRef<'a, V>[src]
impl<'a, V: HasDebug> Debug for ValueRef<'a, V>[src]
impl<'a, V: HasEq> Eq for ValueRef<'a, V>[src]
impl<'a, V> From<ValueMut<'a, V>> for ValueRef<'a, V>[src]
impl<'a, V: HasHash> Hash for ValueRef<'a, V>[src]
fn hash<H: Hasher>(&self, state: &mut H)[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
impl<'a, V: HasPartialEq> PartialEq<ValueRef<'a, V>> for ValueRef<'a, V>[src]
Auto Trait Implementations
impl<'a, V> RefUnwindSafe for ValueRef<'a, V> where
V: RefUnwindSafe,
V: RefUnwindSafe,
impl<'a, V> Send for ValueRef<'a, V> where
V: Send + Sync,
V: Send + Sync,
impl<'a, V> Sync for ValueRef<'a, V> where
V: Sync,
V: Sync,
impl<'a, V> Unpin for ValueRef<'a, V>
impl<'a, V> UnwindSafe for ValueRef<'a, V> where
V: RefUnwindSafe + UnwindSafe,
V: RefUnwindSafe + UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,