pub enum RcList {
Cons(i32, Rc<RcList>),
Nil,
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RcList
impl RefUnwindSafe for RcList
impl !Send for RcList
impl !Sync for RcList
impl Unpin for RcList
impl UnwindSafe for RcList
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more