Struct jlrs::value::weak_ref::WeakRef[][src]

#[repr(transparent)]pub struct WeakRef<'frame>(_, _);

A weak reference.

Implementations

impl<'frame> WeakRef<'frame>[src]

pub fn value(self) -> Value<'frame, 'static>[src]

The referenced Value.

pub fn as_value(self) -> Value<'frame, 'static>[src]

Convert self to a Value.

Trait Implementations

impl<'frame, 'data> Cast<'frame, 'data> for WeakRef<'frame>[src]

type Output = Self

impl<'frame> Clone for WeakRef<'frame>[src]

impl<'frame> Copy for WeakRef<'frame>[src]

impl<'scope> Debug for WeakRef<'scope>[src]

impl<'frame> Eq for WeakRef<'frame>[src]

impl<'frame> Hash for WeakRef<'frame>[src]

impl<'frame> Into<Value<'frame, 'static>> for WeakRef<'frame>[src]

impl<'frame> JuliaType for WeakRef<'frame>[src]

impl<'frame> JuliaTypecheck for WeakRef<'frame>[src]

impl<'frame> PartialEq<WeakRef<'frame>> for WeakRef<'frame>[src]

impl<'frame> StructuralEq for WeakRef<'frame>[src]

impl<'frame> StructuralPartialEq for WeakRef<'frame>[src]

impl<'frame> ValidLayout for WeakRef<'frame>[src]

Auto Trait Implementations

impl<'frame> RefUnwindSafe for WeakRef<'frame>

impl<'frame> !Send for WeakRef<'frame>

impl<'frame> !Sync for WeakRef<'frame>

impl<'frame> Unpin for WeakRef<'frame>

impl<'frame> UnwindSafe for WeakRef<'frame>

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> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<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.