[][src]Trait deno_core::RcLike

pub trait RcLike<T>: AsRef<T> + Into<RcRef<T>> { }

The RcLike trait provides an abstraction over std::rc::Rc and RcRef, so that applicable methods can operate on either type.

Implementations on Foreign Types

impl<T: 'static> RcLike<T> for Rc<T>[src]

impl<T: 'static, '_> RcLike<T> for &'_ Rc<T>[src]

Loading content...

Implementors

impl<T: 'static> RcLike<T> for RcRef<T>[src]

impl<T: 'static, '_> RcLike<T> for &'_ RcRef<T>[src]

Loading content...