pub enum Object<'borrow, 'tape, 'input> {
Tape(Object<'tape, 'input>),
Value(&'borrow Object<'input>),
}
Expand description
Wrapper around the tape that allows interacting with it via a Object
-like API.
Variants§
Implementations§
Auto Trait Implementations§
impl<'borrow, 'tape, 'input> Freeze for Object<'borrow, 'tape, 'input>
impl<'borrow, 'tape, 'input> RefUnwindSafe for Object<'borrow, 'tape, 'input>
impl<'borrow, 'tape, 'input> Send for Object<'borrow, 'tape, 'input>
impl<'borrow, 'tape, 'input> Sync for Object<'borrow, 'tape, 'input>
impl<'borrow, 'tape, 'input> Unpin for Object<'borrow, 'tape, 'input>
impl<'borrow, 'tape, 'input> UnwindSafe for Object<'borrow, 'tape, 'input>
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