struct FrameStore<'a> {
frame: Frame,
bytecode: Option<ByteFrame<'a>>,
}
Fields§
§frame: Frame
§bytecode: Option<ByteFrame<'a>>
Implementations§
Trait Implementations§
Source§impl<'a> Clone for FrameStore<'a>
impl<'a> Clone for FrameStore<'a>
Source§fn clone(&self) -> FrameStore<'a>
fn clone(&self) -> FrameStore<'a>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'new> IntoRoot<FrameStore<'new>> for FrameStore<'_>
impl<'new> IntoRoot<FrameStore<'new>> for FrameStore<'_>
unsafe fn into_root(self) -> FrameStore<'new>
Source§impl<'a> RootedDeref for FrameStore<'a>
impl<'a> RootedDeref for FrameStore<'a>
type Target = RootedFrameStore<'a>
fn rooted_deref(rooted: &Rt<Self>) -> &Self::Target
fn rooted_derefmut(rooted: &mut Rt<Self>) -> &mut Self::Target
Source§impl<'old, 'new> WithLifetime<'new> for FrameStore<'old>
impl<'old, 'new> WithLifetime<'new> for FrameStore<'old>
type Out = FrameStore<'new>
unsafe fn with_lifetime(self) -> Self::Out
Auto Trait Implementations§
impl<'a> !Freeze for FrameStore<'a>
impl<'a> !RefUnwindSafe for FrameStore<'a>
impl<'a> !Send for FrameStore<'a>
impl<'a> !Sync for FrameStore<'a>
impl<'a> Unpin for FrameStore<'a>
impl<'a> !UnwindSafe for FrameStore<'a>
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