[][src]Struct boa::builtins::object::gcobject::GcObject

pub struct GcObject(_);

Garbage collected Object.

Implementations

impl GcObject[src]

pub fn borrow(&self) -> GcCellRef<Object>[src]

pub fn borrow_mut(&self) -> GcCellRefMut<Object>[src]

pub fn try_borrow(&self) -> Result<GcCellRef<Object>, BorrowError>[src]

pub fn try_borrow_mut(&self) -> Result<GcCellRefMut<Object>, BorrowMutError>[src]

pub fn equals(lhs: &Self, rhs: &Self) -> bool[src]

Checks if the garbage collected memory is the same.

Trait Implementations

impl AsRef<GcCell<Object>> for GcObject[src]

impl Clone for GcObject[src]

impl Debug for GcObject[src]

impl Drop for GcObject[src]

impl Finalize for GcObject[src]

impl Trace for GcObject[src]

Auto Trait Implementations

impl !RefUnwindSafe for GcObject

impl !Send for GcObject

impl !Sync for GcObject

impl Unpin for GcObject

impl !UnwindSafe for GcObject

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.

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